pub enum WalOp {
Put {
key: Vec<u8>,
value: Vec<u8>,
},
Delete {
key: Vec<u8>,
},
}Expand description
A WAL operation.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WalOp
impl RefUnwindSafe for WalOp
impl Send for WalOp
impl Sync for WalOp
impl Unpin for WalOp
impl UnsafeUnpin for WalOp
impl UnwindSafe for WalOp
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