pub struct RunSummaryOutput {
pub outcome: String,
pub nodes_run: usize,
pub success_count: usize,
pub failed_count: usize,
pub started_at: String,
pub finished_at: String,
pub duration_secs: Option<i64>,
}Expand description
JSON-serializable run summary for CLI –json output.
Fields§
§outcome: String§nodes_run: usize§success_count: usize§failed_count: usize§started_at: String§finished_at: String§duration_secs: Option<i64>Trait Implementations§
Source§impl Clone for RunSummaryOutput
impl Clone for RunSummaryOutput
Source§fn clone(&self) -> RunSummaryOutput
fn clone(&self) -> RunSummaryOutput
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 RunSummaryOutput
impl Debug for RunSummaryOutput
Source§impl From<&RunSummary> for RunSummaryOutput
impl From<&RunSummary> for RunSummaryOutput
Source§fn from(s: &RunSummary) -> Self
fn from(s: &RunSummary) -> Self
Converts to this type from the input type.
Source§impl From<RunSummary> for RunSummaryOutput
impl From<RunSummary> for RunSummaryOutput
Source§fn from(s: RunSummary) -> Self
fn from(s: RunSummary) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RunSummaryOutput
impl RefUnwindSafe for RunSummaryOutput
impl Send for RunSummaryOutput
impl Sync for RunSummaryOutput
impl Unpin for RunSummaryOutput
impl UnwindSafe for RunSummaryOutput
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