Struct msr_core::storage::StorageStatistics
source · [−]pub struct StorageStatistics {
pub total_records: Option<usize>,
pub total_bytes: Option<u64>,
pub segments: Option<Vec<StorageSegmentStatistics>>,
}
Fields
total_records: Option<usize>
The total number of records (if known)
total_bytes: Option<u64>
The total size in bytes (if known)
segments: Option<Vec<StorageSegmentStatistics>>
Segment statistics (if applicable and available)
Trait Implementations
sourceimpl Clone for StorageStatistics
impl Clone for StorageStatistics
sourcefn clone(&self) -> StorageStatistics
fn clone(&self) -> StorageStatistics
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations
impl RefUnwindSafe for StorageStatistics
impl Send for StorageStatistics
impl Sync for StorageStatistics
impl Unpin for StorageStatistics
impl UnwindSafe for StorageStatistics
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more