pub struct ExecutionSummary {
pub planned: usize,
pub copied: usize,
pub moved: usize,
pub skipped: usize,
pub renamed: usize,
}Expand description
Counts produced by execute_plan.
Fields§
§planned: usizeNumber of tasks present in the input plan.
copied: usizeNumber of files copied.
moved: usizeNumber of files moved.
skipped: usizeNumber of tasks skipped because of ConflictStrategy::Skip.
renamed: usizeNumber of tasks redirected to a name (N).ext destination.
Trait Implementations§
Source§impl Clone for ExecutionSummary
impl Clone for ExecutionSummary
Source§fn clone(&self) -> ExecutionSummary
fn clone(&self) -> ExecutionSummary
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 ExecutionSummary
impl Debug for ExecutionSummary
Source§impl Default for ExecutionSummary
impl Default for ExecutionSummary
Source§fn default() -> ExecutionSummary
fn default() -> ExecutionSummary
Returns the “default value” for a type. Read more
Source§impl PartialEq for ExecutionSummary
impl PartialEq for ExecutionSummary
Source§fn eq(&self, other: &ExecutionSummary) -> bool
fn eq(&self, other: &ExecutionSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ExecutionSummary
impl StructuralPartialEq for ExecutionSummary
Auto Trait Implementations§
impl Freeze for ExecutionSummary
impl RefUnwindSafe for ExecutionSummary
impl Send for ExecutionSummary
impl Sync for ExecutionSummary
impl Unpin for ExecutionSummary
impl UnsafeUnpin for ExecutionSummary
impl UnwindSafe for ExecutionSummary
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