pub struct SSTableStats {
pub sstable_count: usize,
pub total_size: u64,
pub total_entries: u64,
pub total_tables: u64,
pub average_size: u64,
}Expand description
SSTable statistics
Fields§
§sstable_count: usizeNumber of SSTable files
total_size: u64Total size of all SSTables in bytes
total_entries: u64Total number of entries across all SSTables
total_tables: u64Total number of tables across all SSTables
average_size: u64Average SSTable size in bytes
Trait Implementations§
Source§impl Clone for SSTableStats
impl Clone for SSTableStats
Source§fn clone(&self) -> SSTableStats
fn clone(&self) -> SSTableStats
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 SSTableStats
impl RefUnwindSafe for SSTableStats
impl Send for SSTableStats
impl Sync for SSTableStats
impl Unpin for SSTableStats
impl UnsafeUnpin for SSTableStats
impl UnwindSafe for SSTableStats
Blanket Implementations§
impl<T> Allocation for T
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