pub struct CheckpointSnapshotState {
pub checkpoint_id: String,
pub manifest: String,
}Expand description
Immutable checkpoint-manifest-backed snapshot state.
Fields§
§checkpoint_id: StringStable identifier for the captured cut.
manifest: StringSHA-256 identity of the disk or composite checkpoint manifest.
Trait Implementations§
Source§impl Clone for CheckpointSnapshotState
impl Clone for CheckpointSnapshotState
Source§fn clone(&self) -> CheckpointSnapshotState
fn clone(&self) -> CheckpointSnapshotState
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 CheckpointSnapshotState
impl Debug for CheckpointSnapshotState
Source§impl<'de> Deserialize<'de> for CheckpointSnapshotState
impl<'de> Deserialize<'de> for CheckpointSnapshotState
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for CheckpointSnapshotState
Source§impl PartialEq for CheckpointSnapshotState
impl PartialEq for CheckpointSnapshotState
Source§impl Serialize for CheckpointSnapshotState
impl Serialize for CheckpointSnapshotState
impl StructuralPartialEq for CheckpointSnapshotState
Auto Trait Implementations§
impl Freeze for CheckpointSnapshotState
impl RefUnwindSafe for CheckpointSnapshotState
impl Send for CheckpointSnapshotState
impl Sync for CheckpointSnapshotState
impl Unpin for CheckpointSnapshotState
impl UnsafeUnpin for CheckpointSnapshotState
impl UnwindSafe for CheckpointSnapshotState
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