pub enum LogKind {
Replace,
Append,
Free,
Skip,
Corrupted,
}Expand description
The high-level types of stored information about pages and their mutations
Variants§
Replace
Persisted data containing a page replacement
Append
Persisted immutable update
Free
Freeing of a page
Skip
Some state indicating this should be skipped
Corrupted
Unexpected corruption
Trait Implementations§
impl Copy for LogKind
impl Eq for LogKind
impl StructuralPartialEq for LogKind
Auto Trait Implementations§
impl Freeze for LogKind
impl RefUnwindSafe for LogKind
impl Send for LogKind
impl Sync for LogKind
impl Unpin for LogKind
impl UnwindSafe for LogKind
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