pub struct ExecOutcome {
pub downloaded: usize,
pub reformatted: usize,
pub retagged: usize,
pub renamed: usize,
pub deleted: usize,
pub skipped: usize,
pub artifacts_written: usize,
pub artifacts_deleted: usize,
pub failures: Vec<Failure>,
pub status: RunStatus,
}Expand description
The result of applying a Plan: per-action counts and the failure list.
Fields§
§downloaded: usize§reformatted: usize§retagged: usize§renamed: usize§deleted: usize§skipped: usize§artifacts_written: usize§artifacts_deleted: usize§failures: Vec<Failure>Actions that failed and were skipped (auth, transient-exhausted, or permanent). The run continued past each one unless it was an auth abort.
status: RunStatusHow the run ended.
Implementations§
Trait Implementations§
Source§impl Clone for ExecOutcome
impl Clone for ExecOutcome
Source§fn clone(&self) -> ExecOutcome
fn clone(&self) -> ExecOutcome
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 ExecOutcome
impl Debug for ExecOutcome
Source§impl Default for ExecOutcome
impl Default for ExecOutcome
Source§fn default() -> ExecOutcome
fn default() -> ExecOutcome
Returns the “default value” for a type. Read more
impl Eq for ExecOutcome
Source§impl PartialEq for ExecOutcome
impl PartialEq for ExecOutcome
Source§fn eq(&self, other: &ExecOutcome) -> bool
fn eq(&self, other: &ExecOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ExecOutcome
Auto Trait Implementations§
impl Freeze for ExecOutcome
impl RefUnwindSafe for ExecOutcome
impl Send for ExecOutcome
impl Sync for ExecOutcome
impl Unpin for ExecOutcome
impl UnsafeUnpin for ExecOutcome
impl UnwindSafe for ExecOutcome
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