pub struct DryRunSummary {
pub total_changes: usize,
pub creates: usize,
pub modifies: usize,
pub deletes: usize,
pub commands: usize,
pub tests: usize,
}Expand description
Summary of changes in dry-run mode
Fields§
§total_changes: usizeTotal number of changes
creates: usizeNumber of files to create
modifies: usizeNumber of files to modify
deletes: usizeNumber of files to delete
commands: usizeNumber of commands to run
tests: usizeNumber of test runs
Trait Implementations§
Source§impl Clone for DryRunSummary
impl Clone for DryRunSummary
Source§fn clone(&self) -> DryRunSummary
fn clone(&self) -> DryRunSummary
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 DryRunSummary
impl Debug for DryRunSummary
Source§impl<'de> Deserialize<'de> for DryRunSummary
impl<'de> Deserialize<'de> for DryRunSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DryRunSummary
impl RefUnwindSafe for DryRunSummary
impl Send for DryRunSummary
impl Sync for DryRunSummary
impl Unpin for DryRunSummary
impl UnwindSafe for DryRunSummary
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