pub struct Stats {
pub add_bytes: usize,
pub run_bytes: usize,
pub copy_bytes: usize,
pub add_cnt: usize,
pub run_cnt: usize,
pub copy_d_cnt: usize,
pub copy_o_cnt: usize,
pub output_size: usize,
}
Expand description
Stats about the patch file.
Fields§
§add_bytes: usize
§run_bytes: usize
§copy_bytes: usize
§add_cnt: usize
§run_cnt: usize
§copy_d_cnt: usize
§copy_o_cnt: usize
§output_size: usize
Implementations§
Trait Implementations§
impl Copy for Stats
impl Eq for Stats
impl StructuralPartialEq for Stats
Auto Trait Implementations§
impl Freeze for Stats
impl RefUnwindSafe for Stats
impl Send for Stats
impl Sync for Stats
impl Unpin for Stats
impl UnwindSafe for Stats
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