pub struct WorkflowRunSummary {
pub total_steps: usize,
pub executed_steps: usize,
pub succeeded_steps: usize,
pub failed_steps: usize,
pub skipped_steps: usize,
pub elapsed_ms: u64,
pub success: bool,
}Fields§
§total_steps: usize§executed_steps: usize§succeeded_steps: usize§failed_steps: usize§skipped_steps: usize§elapsed_ms: u64§success: boolTrait Implementations§
Source§impl Clone for WorkflowRunSummary
impl Clone for WorkflowRunSummary
Source§fn clone(&self) -> WorkflowRunSummary
fn clone(&self) -> WorkflowRunSummary
Returns a duplicate of the value. Read more
1.0.0 · 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 WorkflowRunSummary
impl Debug for WorkflowRunSummary
Auto Trait Implementations§
impl Freeze for WorkflowRunSummary
impl RefUnwindSafe for WorkflowRunSummary
impl Send for WorkflowRunSummary
impl Sync for WorkflowRunSummary
impl Unpin for WorkflowRunSummary
impl UnsafeUnpin for WorkflowRunSummary
impl UnwindSafe for WorkflowRunSummary
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