pub struct MirrorStats {
pub upserted: usize,
pub removed: usize,
}Expand description
Statistics describing what a single refresh changed.
Fields§
§upserted: usizeNumber of memories added or updated from the folder.
removed: usizeNumber of memories removed because their source file was gone.
Trait Implementations§
Source§impl Clone for MirrorStats
impl Clone for MirrorStats
Source§fn clone(&self) -> MirrorStats
fn clone(&self) -> MirrorStats
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 MirrorStats
impl Debug for MirrorStats
Source§impl Default for MirrorStats
impl Default for MirrorStats
Source§fn default() -> MirrorStats
fn default() -> MirrorStats
Returns the “default value” for a type. Read more
impl Eq for MirrorStats
Source§impl PartialEq for MirrorStats
impl PartialEq for MirrorStats
Source§fn eq(&self, other: &MirrorStats) -> bool
fn eq(&self, other: &MirrorStats) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MirrorStats
Auto Trait Implementations§
impl Freeze for MirrorStats
impl RefUnwindSafe for MirrorStats
impl Send for MirrorStats
impl Sync for MirrorStats
impl Unpin for MirrorStats
impl UnsafeUnpin for MirrorStats
impl UnwindSafe for MirrorStats
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