Struct bazel_bep::types::google::PublishBuildToolEventStreamRequest
source · pub struct PublishBuildToolEventStreamRequest {
pub ordered_build_event: Option<OrderedBuildEvent>,
pub notification_keywords: Vec<String>,
pub project_id: String,
pub check_preceding_lifecycle_events_present: bool,
}Expand description
Streaming request message for PublishBuildToolEventStream.
Fields§
§ordered_build_event: Option<OrderedBuildEvent>Required. The build event with position info. New publishing clients should use this field rather than the 3 above.
notification_keywords: Vec<String>The keywords to be attached to the notification which notifies the start of a new build event stream. BES only reads this field when sequence_number or ordered_build_event.sequence_number is 1 in this message. If this field is empty, BES will not publish notification messages for this stream.
project_id: StringRequired. The project this build is associated with. This should match the project used for the initial call to PublishLifecycleEvent (containing a BuildEnqueued message).
check_preceding_lifecycle_events_present: boolWhether to require a previously received matching InvocationAttemptStarted event before continuing event processing for the event in the current request. BES only performs this check for events with sequence_number 1 i.e. the first event in the stream.
Trait Implementations§
source§impl Clone for PublishBuildToolEventStreamRequest
impl Clone for PublishBuildToolEventStreamRequest
source§fn clone(&self) -> PublishBuildToolEventStreamRequest
fn clone(&self) -> PublishBuildToolEventStreamRequest
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Message for PublishBuildToolEventStreamRequest
impl Message for PublishBuildToolEventStreamRequest
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
source§fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>where
B: BufMut,
Self: Sized,
fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>where
B: BufMut,
Self: Sized,
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>where
B: BufMut,
Self: Sized,
fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>where
B: BufMut,
Self: Sized,
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn decode<B>(buf: B) -> Result<Self, DecodeError>where
B: Buf,
Self: Default,
fn decode<B>(buf: B) -> Result<Self, DecodeError>where
B: Buf,
Self: Default,
source§fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>where
B: Buf,
Self: Default,
fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>where
B: Buf,
Self: Default,
source§fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>where
B: Buf,
Self: Sized,
fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>where
B: Buf,
Self: Sized,
self. Read moresource§fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>where
B: Buf,
Self: Sized,
fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>where
B: Buf,
Self: Sized,
self.source§impl PartialEq for PublishBuildToolEventStreamRequest
impl PartialEq for PublishBuildToolEventStreamRequest
source§fn eq(&self, other: &PublishBuildToolEventStreamRequest) -> bool
fn eq(&self, other: &PublishBuildToolEventStreamRequest) -> bool
self and other values to be equal, and is used
by ==.