pub struct SnapshotContents {
pub info: SnapshotInfo,
pub entries: Vec<SnapshotEntry>,
}Expand description
Fully verified logical snapshot contents for offline operations.
Fields§
§info: SnapshotInfoVerified snapshot metadata and checkpoint anchor.
entries: Vec<SnapshotEntry>Strictly key-ordered logical entries.
Trait Implementations§
Source§impl Clone for SnapshotContents
impl Clone for SnapshotContents
Source§fn clone(&self) -> SnapshotContents
fn clone(&self) -> SnapshotContents
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SnapshotContents
impl Debug for SnapshotContents
impl Eq for SnapshotContents
Source§impl PartialEq for SnapshotContents
impl PartialEq for SnapshotContents
impl StructuralPartialEq for SnapshotContents
Auto Trait Implementations§
impl Freeze for SnapshotContents
impl RefUnwindSafe for SnapshotContents
impl Send for SnapshotContents
impl Sync for SnapshotContents
impl Unpin for SnapshotContents
impl UnsafeUnpin for SnapshotContents
impl UnwindSafe for SnapshotContents
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