pub struct DiffCounts {
pub added: usize,
pub removed: usize,
pub affected: usize,
pub unchanged: usize,
}Fields§
§added: usize§removed: usize§affected: usize§unchanged: usizeTrait Implementations§
Source§impl Clone for DiffCounts
impl Clone for DiffCounts
Source§fn clone(&self) -> DiffCounts
fn clone(&self) -> DiffCounts
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 DiffCounts
impl Debug for DiffCounts
Auto Trait Implementations§
impl Freeze for DiffCounts
impl RefUnwindSafe for DiffCounts
impl Send for DiffCounts
impl Sync for DiffCounts
impl Unpin for DiffCounts
impl UnsafeUnpin for DiffCounts
impl UnwindSafe for DiffCounts
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