pub struct CatalogStorageStats {
pub table_count: usize,
pub total_rows: u64,
pub file_bytes: u64,
pub allocated_page_count: usize,
pub free_page_count: usize,
pub fragmented_free_page_count: usize,
pub trailing_free_page_count: usize,
pub live_table_page_count: usize,
pub overflow_page_count: usize,
pub table_used_bytes: usize,
pub table_unused_bytes: usize,
}Fields§
§table_count: usize§total_rows: u64§file_bytes: u64§allocated_page_count: usize§free_page_count: usize§fragmented_free_page_count: usize§trailing_free_page_count: usize§live_table_page_count: usize§overflow_page_count: usize§table_used_bytes: usize§table_unused_bytes: usizeTrait Implementations§
Source§impl Clone for CatalogStorageStats
impl Clone for CatalogStorageStats
Source§fn clone(&self) -> CatalogStorageStats
fn clone(&self) -> CatalogStorageStats
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 moreSource§impl Debug for CatalogStorageStats
impl Debug for CatalogStorageStats
Source§impl PartialEq for CatalogStorageStats
impl PartialEq for CatalogStorageStats
impl Eq for CatalogStorageStats
impl StructuralPartialEq for CatalogStorageStats
Auto Trait Implementations§
impl Freeze for CatalogStorageStats
impl RefUnwindSafe for CatalogStorageStats
impl Send for CatalogStorageStats
impl Sync for CatalogStorageStats
impl Unpin for CatalogStorageStats
impl UnsafeUnpin for CatalogStorageStats
impl UnwindSafe for CatalogStorageStats
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