pub enum MemtableEntry {
Value(Vec<u8>),
Tombstone,
}Expand description
Entry value in the memtable - can be a value or a tombstone (deletion marker)
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for MemtableEntry
impl Clone for MemtableEntry
Source§fn clone(&self) -> MemtableEntry
fn clone(&self) -> MemtableEntry
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 MemtableEntry
impl Debug for MemtableEntry
Source§impl PartialEq for MemtableEntry
impl PartialEq for MemtableEntry
impl StructuralPartialEq for MemtableEntry
Auto Trait Implementations§
impl Freeze for MemtableEntry
impl RefUnwindSafe for MemtableEntry
impl Send for MemtableEntry
impl Sync for MemtableEntry
impl Unpin for MemtableEntry
impl UnwindSafe for MemtableEntry
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