pub struct ExecutionStepErrored {
pub started_at: Option<Timestamp>,
pub started_by: Option<String>,
pub submitted_at: Option<Timestamp>,
pub submitted_by: Option<String>,
pub errored_at: Option<Timestamp>,
pub errored_by: String,
pub error: String,
pub skipped_at: Option<Timestamp>,
pub skipped_by: Option<String>,
pub skip_reason: Option<String>,
pub succeeded_at: Option<Timestamp>,
pub succeeded_by: Option<String>,
}Fields§
§started_at: Option<Timestamp>§started_by: Option<String>§submitted_at: Option<Timestamp>§submitted_by: Option<String>§errored_at: Option<Timestamp>§errored_by: String§error: String§skipped_at: Option<Timestamp>§skipped_by: Option<String>§skip_reason: Option<String>§succeeded_at: Option<Timestamp>§succeeded_by: Option<String>Implementations§
Source§impl ExecutionStepErrored
impl ExecutionStepErrored
Sourcepub fn started_by(&self) -> &str
pub fn started_by(&self) -> &str
Returns the value of started_by, or the default value if started_by is unset.
Sourcepub fn submitted_by(&self) -> &str
pub fn submitted_by(&self) -> &str
Returns the value of submitted_by, or the default value if submitted_by is unset.
Sourcepub fn skipped_by(&self) -> &str
pub fn skipped_by(&self) -> &str
Returns the value of skipped_by, or the default value if skipped_by is unset.
Sourcepub fn skip_reason(&self) -> &str
pub fn skip_reason(&self) -> &str
Returns the value of skip_reason, or the default value if skip_reason is unset.
Sourcepub fn succeeded_by(&self) -> &str
pub fn succeeded_by(&self) -> &str
Returns the value of succeeded_by, or the default value if succeeded_by is unset.
Trait Implementations§
Source§impl Clone for ExecutionStepErrored
impl Clone for ExecutionStepErrored
Source§fn clone(&self) -> ExecutionStepErrored
fn clone(&self) -> ExecutionStepErrored
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ExecutionStepErrored
impl Debug for ExecutionStepErrored
Source§impl Default for ExecutionStepErrored
impl Default for ExecutionStepErrored
Source§impl Message for ExecutionStepErrored
impl Message for ExecutionStepErrored
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
Source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message to a buffer. Read more
Source§fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message to a newly allocated buffer.
Source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message with a length-delimiter to a buffer. Read more
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,
Encodes the message with a length-delimiter to a newly allocated buffer.
Source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes an instance of the message from a buffer. Read more
Source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes a length-delimited instance of the message from the buffer.
Source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes an instance of the message from a buffer, and merges it into
self. Read moreSource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes a length-delimited instance of the message from buffer, and
merges it into
self.Source§impl PartialEq for ExecutionStepErrored
impl PartialEq for ExecutionStepErrored
Source§fn eq(&self, other: &ExecutionStepErrored) -> bool
fn eq(&self, other: &ExecutionStepErrored) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ExecutionStepErrored
Auto Trait Implementations§
impl Freeze for ExecutionStepErrored
impl RefUnwindSafe for ExecutionStepErrored
impl Send for ExecutionStepErrored
impl Sync for ExecutionStepErrored
impl Unpin for ExecutionStepErrored
impl UnsafeUnpin for ExecutionStepErrored
impl UnwindSafe for ExecutionStepErrored
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request