pub struct DeltaSummary {
pub num_commands: usize,
pub num_copies: usize,
pub num_adds: usize,
pub copy_bytes: usize,
pub add_bytes: usize,
pub total_output_bytes: usize,
}Expand description
Summary statistics for a set of commands.
Fields§
§num_commands: usize§num_copies: usize§num_adds: usize§copy_bytes: usize§add_bytes: usize§total_output_bytes: usizeTrait Implementations§
Auto Trait Implementations§
impl Freeze for DeltaSummary
impl RefUnwindSafe for DeltaSummary
impl Send for DeltaSummary
impl Sync for DeltaSummary
impl Unpin for DeltaSummary
impl UnsafeUnpin for DeltaSummary
impl UnwindSafe for DeltaSummary
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