Enum gapi_grpc::google::devtools::build::v1::build_event::Event[][src]

pub enum Event {
    InvocationAttemptStarted(InvocationAttemptStarted),
    InvocationAttemptFinished(InvocationAttemptFinished),
    BuildEnqueued(BuildEnqueued),
    BuildFinished(BuildFinished),
    ConsoleOutput(ConsoleOutput),
    ComponentStreamFinished(BuildComponentStreamFinished),
    BazelEvent(Any),
    BuildExecutionEvent(Any),
    SourceFetchEvent(Any),
}

////////////////////////////////////////////////////////////////////////// Events that indicate a state change of a build request in the build queue.

Variants

InvocationAttemptStarted(InvocationAttemptStarted)

An invocation attempt has started.

InvocationAttemptFinished(InvocationAttemptFinished)

An invocation attempt has finished.

BuildEnqueued(BuildEnqueued)

The build is enqueued.

BuildFinished(BuildFinished)

The build has finished. Set when the build is terminated.

ConsoleOutput(ConsoleOutput)

An event containing printed text.

ComponentStreamFinished(BuildComponentStreamFinished)

Indicates the end of a build event stream (with the same StreamId) from a build component executing the requested build task. *** This field does not indicate the WatchBuild RPC is finished. ***

BazelEvent(Any)

Structured build event generated by Bazel about its execution progress.

BuildExecutionEvent(Any)

An event that contains supplemental tool-specific information about build execution.

SourceFetchEvent(Any)

An event that contains supplemental tool-specific information about source fetching.

Implementations

impl Event[src]

pub fn encode<B>(&self, buf: &mut B) where
    B: BufMut
[src]

pub fn merge<B>(
    field: &mut Option<Event>,
    tag: u32,
    wire_type: WireType,
    buf: &mut B,
    ctx: DecodeContext
) -> Result<(), DecodeError> where
    B: Buf
[src]

pub fn encoded_len(&self) -> usize[src]

Trait Implementations

impl Clone for Event[src]

impl Debug for Event[src]

impl PartialEq<Event> for Event[src]

impl StructuralPartialEq for Event[src]

Auto Trait Implementations

impl RefUnwindSafe for Event

impl Send for Event

impl Sync for Event

impl Unpin for Event

impl UnwindSafe for Event

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<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]