pub struct ManagedStorageStats {
pub pages_count: usize,
pub chunked_pages_count: usize,
pub exclusive_pages_count: usize,
pub total_size: usize,
pub occupied_size: usize,
pub free_size: usize,
}
Fields§
§pages_count: usize
§chunked_pages_count: usize
§exclusive_pages_count: usize
§total_size: usize
§occupied_size: usize
§free_size: usize
Trait Implementations§
Source§impl Clone for ManagedStorageStats
impl Clone for ManagedStorageStats
Source§fn clone(&self) -> ManagedStorageStats
fn clone(&self) -> ManagedStorageStats
Returns a copy 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 moreSource§impl Debug for ManagedStorageStats
impl Debug for ManagedStorageStats
Source§impl Default for ManagedStorageStats
impl Default for ManagedStorageStats
Source§fn default() -> ManagedStorageStats
fn default() -> ManagedStorageStats
Returns the “default value” for a type. Read more
Source§impl PartialEq for ManagedStorageStats
impl PartialEq for ManagedStorageStats
impl Eq for ManagedStorageStats
impl StructuralPartialEq for ManagedStorageStats
Auto Trait Implementations§
impl Freeze for ManagedStorageStats
impl RefUnwindSafe for ManagedStorageStats
impl Send for ManagedStorageStats
impl Sync for ManagedStorageStats
impl Unpin for ManagedStorageStats
impl UnwindSafe for ManagedStorageStats
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