pub struct StoreStats {
pub n_sequences: usize,
pub n_sequences_loaded: usize,
pub n_collections: usize,
pub n_collections_loaded: usize,
pub storage_mode: String,
pub total_disk_size: usize,
}Expand description
Extended statistics for a RefgetStore
Fields§
§n_sequences: usizeTotal number of sequences (Stub + Full)
n_sequences_loaded: usizeNumber of sequences with data loaded (Full)
n_collections: usizeTotal number of collections (Stub + Full)
n_collections_loaded: usizeNumber of collections with sequences loaded (Full)
storage_mode: StringStorage mode (Raw or Encoded)
total_disk_size: usizeActual disk usage in bytes (all files in store directory)
Trait Implementations§
Source§impl Clone for StoreStats
impl Clone for StoreStats
Source§fn clone(&self) -> StoreStats
fn clone(&self) -> StoreStats
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 moreAuto Trait Implementations§
impl Freeze for StoreStats
impl RefUnwindSafe for StoreStats
impl Send for StoreStats
impl Sync for StoreStats
impl Unpin for StoreStats
impl UnwindSafe for StoreStats
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