pub struct DiffStats {
pub a_total: u64,
pub b_total: u64,
pub common: u64,
pub a_only: u64,
pub b_only: u64,
pub a_skipped_bnodes: u64,
pub b_skipped_bnodes: u64,
}Fields§
§a_total: u64§b_total: u64§common: u64§a_only: u64§b_only: u64§a_skipped_bnodes: u64§b_skipped_bnodes: u64Implementations§
Trait Implementations§
impl Copy for DiffStats
Auto Trait Implementations§
impl Freeze for DiffStats
impl RefUnwindSafe for DiffStats
impl Send for DiffStats
impl Sync for DiffStats
impl Unpin for DiffStats
impl UnsafeUnpin for DiffStats
impl UnwindSafe for DiffStats
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