Enum gapi_grpc::google::devtools::build::v1::stream_id::BuildComponent[][src]

#[repr(i32)]pub enum BuildComponent {
    UnknownComponent,
    Controller,
    Worker,
    Tool,
}

Which build component generates this event stream. Each build component may generate one event stream.

Variants

UnknownComponent

Unknown or unspecified; callers should never set this value.

Controller

A component that coordinates builds.

Worker

A component that runs executables needed to complete a build.

Tool

A component that builds something.

Implementations

impl BuildComponent[src]

pub fn is_valid(value: i32) -> bool[src]

Returns true if value is a variant of BuildComponent.

pub fn from_i32(value: i32) -> Option<BuildComponent>[src]

Converts an i32 to a BuildComponent, or None if value is not a valid variant.

Trait Implementations

impl Clone for BuildComponent[src]

impl Copy for BuildComponent[src]

impl Debug for BuildComponent[src]

impl Default for BuildComponent[src]

impl Eq for BuildComponent[src]

impl From<BuildComponent> for i32[src]

impl Hash for BuildComponent[src]

impl Ord for BuildComponent[src]

impl PartialEq<BuildComponent> for BuildComponent[src]

impl PartialOrd<BuildComponent> for BuildComponent[src]

impl StructuralEq for BuildComponent[src]

impl StructuralPartialEq for BuildComponent[src]

Auto Trait Implementations

impl RefUnwindSafe for BuildComponent

impl Send for BuildComponent

impl Sync for BuildComponent

impl Unpin for BuildComponent

impl UnwindSafe for BuildComponent

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]