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
Vector
HashSkipList
HashLinkList
Fields
bucket_count: usize
Auto Trait Implementations
impl RefUnwindSafe for MemtableFactory
impl Send for MemtableFactory
impl Sync for MemtableFactory
impl Unpin for MemtableFactory
impl UnwindSafe for MemtableFactory
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more