pub enum Delta<D> {
U {
delta: D,
seqno: u64,
},
D {
seqno: u64,
},
}
Expand description
Delta type, describe the older-versions of an indexed entry.
Variants§
Implementations§
Trait Implementations§
impl<D: Eq> Eq for Delta<D>
impl<D> StructuralPartialEq for Delta<D>
Auto Trait Implementations§
impl<D> Freeze for Delta<D>where
D: Freeze,
impl<D> RefUnwindSafe for Delta<D>where
D: RefUnwindSafe,
impl<D> Send for Delta<D>where
D: Send,
impl<D> Sync for Delta<D>where
D: Sync,
impl<D> Unpin for Delta<D>where
D: Unpin,
impl<D> UnwindSafe for Delta<D>where
D: 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