pub enum Value<V> {
U {
value: V,
seqno: u64,
},
D {
seqno: u64,
},
}
Expand description
Value type, describe the value part of each entry withing a indexed data-set
Variants§
Implementations§
Trait Implementations§
impl<V: Eq> Eq for Value<V>
impl<V> StructuralPartialEq for Value<V>
Auto Trait Implementations§
impl<V> Freeze for Value<V>where
V: Freeze,
impl<V> RefUnwindSafe for Value<V>where
V: RefUnwindSafe,
impl<V> Send for Value<V>where
V: Send,
impl<V> Sync for Value<V>where
V: Sync,
impl<V> Unpin for Value<V>where
V: Unpin,
impl<V> UnwindSafe for Value<V>where
V: UnwindSafe,
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