pub enum UndoPageType {
Insert,
Update,
Unknown(u16),
}Expand description
Undo page types.
Variants§
Insert
Insert undo log (INSERT operations only)
Update
Update undo log (UPDATE and DELETE operations)
Unknown(u16)
Unknown type
Implementations§
Trait Implementations§
Source§impl Clone for UndoPageType
impl Clone for UndoPageType
Source§fn clone(&self) -> UndoPageType
fn clone(&self) -> UndoPageType
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 moreSource§impl Debug for UndoPageType
impl Debug for UndoPageType
Source§impl PartialEq for UndoPageType
impl PartialEq for UndoPageType
Source§impl Serialize for UndoPageType
impl Serialize for UndoPageType
impl Copy for UndoPageType
impl Eq for UndoPageType
impl StructuralPartialEq for UndoPageType
Auto Trait Implementations§
impl Freeze for UndoPageType
impl RefUnwindSafe for UndoPageType
impl Send for UndoPageType
impl Sync for UndoPageType
impl Unpin for UndoPageType
impl UnwindSafe for UndoPageType
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