pub struct SnapshotStats {
pub count: usize,
pub total_size: usize,
pub oldest_timestamp: Option<u64>,
pub newest_timestamp: Option<u64>,
}Expand description
Statistics about managed snapshots.
Fields§
§count: usize§total_size: usize§oldest_timestamp: Option<u64>§newest_timestamp: Option<u64>Trait Implementations§
Source§impl Clone for SnapshotStats
impl Clone for SnapshotStats
Source§fn clone(&self) -> SnapshotStats
fn clone(&self) -> SnapshotStats
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SnapshotStats
impl RefUnwindSafe for SnapshotStats
impl Send for SnapshotStats
impl Sync for SnapshotStats
impl Unpin for SnapshotStats
impl UnwindSafe for SnapshotStats
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