pub enum CommittedEntrySet<K, V> {
RMemLog(ReadonlyMemLog<K, V>),
SSTable(SSTable<K, V>),
}Variants§
Implementations§
source§impl<K, V> CommittedEntrySet<K, V>where
K: Deser + Ord,
V: Deser,
impl<K, V> CommittedEntrySet<K, V>where
K: Deser + Ord,
V: Deser,
Auto Trait Implementations§
impl<K, V> RefUnwindSafe for CommittedEntrySet<K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> Send for CommittedEntrySet<K, V>
impl<K, V> Sync for CommittedEntrySet<K, V>
impl<K, V> Unpin for CommittedEntrySet<K, V>
impl<K, V> UnwindSafe for CommittedEntrySet<K, V>
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