Struct gapi_grpc::google::devtools::build::v1::OrderedBuildEvent[][src]

pub struct OrderedBuildEvent {
    pub stream_id: Option<StreamId>,
    pub sequence_number: i64,
    pub event: Option<BuildEvent>,
}

Build event with contextual information about the stream it belongs to and its position in that stream.

Fields

stream_id: Option<StreamId>

Which build event stream this event belongs to.

sequence_number: i64

The position of this event in the stream. The sequence numbers for a build event stream should be a sequence of consecutive natural numbers starting from one. (1, 2, 3, …)

event: Option<BuildEvent>

The actual event.

Trait Implementations

impl Clone for OrderedBuildEvent[src]

impl Debug for OrderedBuildEvent[src]

impl Default for OrderedBuildEvent[src]

impl Message for OrderedBuildEvent[src]

impl PartialEq<OrderedBuildEvent> for OrderedBuildEvent[src]

impl StructuralPartialEq for OrderedBuildEvent[src]

Auto Trait Implementations

impl RefUnwindSafe for OrderedBuildEvent

impl Send for OrderedBuildEvent

impl Sync for OrderedBuildEvent

impl Unpin for OrderedBuildEvent

impl UnwindSafe for OrderedBuildEvent

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]