pub struct WALStats {
pub total_entries: u64,
pub total_bytes_written: u64,
pub current_file_size: usize,
pub files_rotated: u64,
pub files_cleaned: u64,
pub recovery_count: u64,
}Fields§
§total_entries: u64§total_bytes_written: u64§current_file_size: usize§files_rotated: u64§files_cleaned: u64§recovery_count: u64Trait Implementations§
Auto Trait Implementations§
impl Freeze for WALStats
impl RefUnwindSafe for WALStats
impl Send for WALStats
impl Sync for WALStats
impl Unpin for WALStats
impl UnsafeUnpin for WALStats
impl UnwindSafe for WALStats
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