pub struct Stats {
pub visible_commit_seq: CommitSeq,
pub last_transaction_id: TransactionId,
pub live_generation: CheckpointGeneration,
pub base_byte_size: u64,
pub log_byte_size: u64,
pub element_count: usize,
pub relation_count: usize,
pub incidence_count: usize,
pub catalog: CatalogSummary,
}Expand description
Fields§
§visible_commit_seq: CommitSeqLast visible commit sequence.
last_transaction_id: TransactionIdLast writer transaction ID burned by this handle.
This value is durable after a dirty commit and session-local after rollback.
live_generation: CheckpointGenerationLive base generation named by the superblock (the count of folds this store has undergone; gen-0 is the freshly created store).
base_byte_size: u64On-disk byte size of the live base file.
log_byte_size: u64On-disk byte size of the live delta-log (the tail recovery replays and the auto-checkpoint policy weighs against the base size).
element_count: usizeVisible element count.
relation_count: usizeVisible relation count.
incidence_count: usizeVisible incidence count.
catalog: CatalogSummaryCatalog-size summary.
Trait Implementations§
impl Copy for Stats
impl Eq for Stats
impl StructuralPartialEq for Stats
Auto Trait Implementations§
impl Freeze for Stats
impl RefUnwindSafe for Stats
impl Send for Stats
impl Sync for Stats
impl Unpin for Stats
impl UnsafeUnpin for Stats
impl UnwindSafe for Stats
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