pub struct StorageSegmentStatistics {
pub created_at: SystemTime,
pub total_records: usize,
pub total_bytes: Option<u64>,
}Fields§
§created_at: SystemTime§total_records: usize§total_bytes: Option<u64>The total size in bytes (if known)
Trait Implementations§
Source§impl Clone for StorageSegmentStatistics
impl Clone for StorageSegmentStatistics
Source§fn clone(&self) -> StorageSegmentStatistics
fn clone(&self) -> StorageSegmentStatistics
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 StorageSegmentStatistics
impl RefUnwindSafe for StorageSegmentStatistics
impl Send for StorageSegmentStatistics
impl Sync for StorageSegmentStatistics
impl Unpin for StorageSegmentStatistics
impl UnwindSafe for StorageSegmentStatistics
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