pub struct ReliabilityCommandRecord {
pub phase: ReliabilityPhase,
pub stage: String,
pub command_name: String,
pub invoked_program: String,
pub invoked_args: Vec<String>,
pub exit_code: i32,
pub duration_ms: u64,
pub required_success: bool,
pub succeeded: bool,
pub artifact_paths: Vec<String>,
}Expand description
Recorded result of one lifecycle command execution.
Fields§
§phase: ReliabilityPhase§stage: String§command_name: String§invoked_program: String§invoked_args: Vec<String>§exit_code: i32§duration_ms: u64§required_success: bool§succeeded: bool§artifact_paths: Vec<String>Trait Implementations§
Source§impl Clone for ReliabilityCommandRecord
impl Clone for ReliabilityCommandRecord
Source§fn clone(&self) -> ReliabilityCommandRecord
fn clone(&self) -> ReliabilityCommandRecord
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 ReliabilityCommandRecord
impl Debug for ReliabilityCommandRecord
Source§impl<'de> Deserialize<'de> for ReliabilityCommandRecord
impl<'de> Deserialize<'de> for ReliabilityCommandRecord
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ReliabilityCommandRecord
impl PartialEq for ReliabilityCommandRecord
Source§fn eq(&self, other: &ReliabilityCommandRecord) -> bool
fn eq(&self, other: &ReliabilityCommandRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ReliabilityCommandRecord
impl Serialize for ReliabilityCommandRecord
impl Eq for ReliabilityCommandRecord
impl StructuralPartialEq for ReliabilityCommandRecord
Auto Trait Implementations§
impl Freeze for ReliabilityCommandRecord
impl RefUnwindSafe for ReliabilityCommandRecord
impl Send for ReliabilityCommandRecord
impl Sync for ReliabilityCommandRecord
impl Unpin for ReliabilityCommandRecord
impl UnsafeUnpin for ReliabilityCommandRecord
impl UnwindSafe for ReliabilityCommandRecord
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.