pub struct CheckpointSnapshotState {
pub checkpoint_id: String,
pub checkpoint_root: String,
pub restore_intents: Vec<String>,
pub requirements_summary: BTreeMap<String, Value>,
}Expand description
Composite-checkpoint-backed state.
Fields§
§checkpoint_id: StringStable checkpoint identifier.
checkpoint_root: StringComposite checkpoint integrity root.
restore_intents: Vec<String>Allowed restore intents.
requirements_summary: BTreeMap<String, Value>Bounded early-admission summary.
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<CheckpointSnapshotState, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CheckpointSnapshotState, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CheckpointSnapshotState
impl PartialEq for CheckpointSnapshotState
Source§impl Serialize for CheckpointSnapshotState
impl Serialize for CheckpointSnapshotState
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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