pub struct StorageStatistics {
pub total_objects: u64,
pub total_size: u64,
pub blob_count: u64,
pub blob_size: u64,
pub tree_count: u64,
pub tree_size: u64,
pub snapshot_count: u64,
pub snapshot_size: u64,
pub packfile_count: u64,
pub compression_ratio: f64,
pub deduplication_ratio: f64,
}Fields§
§total_objects: u64§total_size: u64§blob_count: u64§blob_size: u64§tree_count: u64§tree_size: u64§snapshot_count: u64§snapshot_size: u64§packfile_count: u64§compression_ratio: f64§deduplication_ratio: f64Trait Implementations§
Source§impl Clone for StorageStatistics
impl Clone for StorageStatistics
Source§fn clone(&self) -> StorageStatistics
fn clone(&self) -> StorageStatistics
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 moreAuto Trait Implementations§
impl Freeze for StorageStatistics
impl RefUnwindSafe for StorageStatistics
impl Send for StorageStatistics
impl Sync for StorageStatistics
impl Unpin for StorageStatistics
impl UnsafeUnpin for StorageStatistics
impl UnwindSafe for StorageStatistics
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