Enum rocksdb::MemtableFactory
source · pub enum MemtableFactory {
Vector,
HashSkipList {
bucket_count: usize,
height: i32,
branching_factor: i32,
},
HashLinkList {
bucket_count: usize,
},
}
Expand description
Defines the underlying memtable implementation. See official wiki for more information.
Variants§
Auto Trait Implementations§
impl Freeze for MemtableFactory
impl RefUnwindSafe for MemtableFactory
impl Send for MemtableFactory
impl Sync for MemtableFactory
impl Unpin for MemtableFactory
impl UnwindSafe for MemtableFactory
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