pub struct StepResultSummary {
pub step_id: Uuid,
pub key: String,
pub status: StepStatus,
pub exit_code: Option<i32>,
pub duration_ms: u64,
}Fields§
§step_id: Uuid§key: String§status: StepStatus§exit_code: Option<i32>§duration_ms: u64Trait Implementations§
Source§impl Clone for StepResultSummary
impl Clone for StepResultSummary
Source§fn clone(&self) -> StepResultSummary
fn clone(&self) -> StepResultSummary
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 moreAuto Trait Implementations§
impl Freeze for StepResultSummary
impl RefUnwindSafe for StepResultSummary
impl Send for StepResultSummary
impl Sync for StepResultSummary
impl Unpin for StepResultSummary
impl UnsafeUnpin for StepResultSummary
impl UnwindSafe for StepResultSummary
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