pub struct ExecutionSnapshot {
pub snapshot_id: ExecutionSnapshotId,
pub size_bytes: u64,
pub state: ExecutionState,
pub lease: ExecutionLease,
}Expand description
Result of atomically capturing one execution filesystem.
Fields§
§snapshot_id: ExecutionSnapshotId§size_bytes: u64§state: ExecutionStateStable state restored after the temporary snapshot pause.
lease: ExecutionLeaseGeneration-fenced runtime evidence after snapshot completion.
Trait Implementations§
Source§impl Clone for ExecutionSnapshot
impl Clone for ExecutionSnapshot
Source§fn clone(&self) -> ExecutionSnapshot
fn clone(&self) -> ExecutionSnapshot
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 ExecutionSnapshot
impl Debug for ExecutionSnapshot
Source§impl<'de> Deserialize<'de> for ExecutionSnapshot
impl<'de> Deserialize<'de> for ExecutionSnapshot
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
Auto Trait Implementations§
impl Freeze for ExecutionSnapshot
impl RefUnwindSafe for ExecutionSnapshot
impl Send for ExecutionSnapshot
impl Sync for ExecutionSnapshot
impl Unpin for ExecutionSnapshot
impl UnsafeUnpin for ExecutionSnapshot
impl UnwindSafe for ExecutionSnapshot
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