pub struct TruncateWalReport {
pub status: TruncateWalStatus,
pub busy: u32,
pub log_frames: u32,
pub checkpointed_frames: u32,
}Expand description
Result of [Engine::truncate_wal]. Carries the three counters
returned by PRAGMA wal_checkpoint(TRUNCATE): busy, log_frames,
checkpointed_frames.
Fields§
§status: TruncateWalStatus§busy: u32§log_frames: u32§checkpointed_frames: u32Trait Implementations§
Source§impl Clone for TruncateWalReport
impl Clone for TruncateWalReport
Source§fn clone(&self) -> TruncateWalReport
fn clone(&self) -> TruncateWalReport
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 moreSource§impl Debug for TruncateWalReport
impl Debug for TruncateWalReport
impl Eq for TruncateWalReport
Source§impl PartialEq for TruncateWalReport
impl PartialEq for TruncateWalReport
impl StructuralPartialEq for TruncateWalReport
Auto Trait Implementations§
impl Freeze for TruncateWalReport
impl RefUnwindSafe for TruncateWalReport
impl Send for TruncateWalReport
impl Sync for TruncateWalReport
impl Unpin for TruncateWalReport
impl UnsafeUnpin for TruncateWalReport
impl UnwindSafe for TruncateWalReport
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