pub enum DeltaBlob<T>{
Missing,
Snapshot(T),
}Expand description
Delta blob for representing checkpoint state
A DeltaBlob represents the persisted state of a delta channel.
Missing indicates no checkpoint data is available.
Snapshot contains a full snapshot of the value.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for DeltaBlob<T>where
T: Freeze,
impl<T> RefUnwindSafe for DeltaBlob<T>where
T: RefUnwindSafe,
impl<T> Send for DeltaBlob<T>where
T: Send,
impl<T> Sync for DeltaBlob<T>where
T: Sync,
impl<T> Unpin for DeltaBlob<T>where
T: Unpin,
impl<T> UnsafeUnpin for DeltaBlob<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for DeltaBlob<T>where
T: 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