pub struct WorkloadFreeze {
pub external_mount_tags: Vec<String>,
pub attempt_id: String,
pub host_input: WorkloadTransportPosition,
}Expand description
Payload for core.workload.freeze messages.
The attempt identity makes retries idempotent and prevents one checkpoint operation from accidentally releasing another operation’s freeze.
Fields§
External virtiofs tags whose writeback boundary must be proved by the guest.
attempt_id: StringStable checkpoint attempt identity selected by the host.
host_input: WorkloadTransportPositionComplete ordinary frames admitted by the host before gating user input.
Trait Implementations§
Source§impl Clone for WorkloadFreeze
impl Clone for WorkloadFreeze
Source§fn clone(&self) -> WorkloadFreeze
fn clone(&self) -> WorkloadFreeze
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 WorkloadFreeze
impl Debug for WorkloadFreeze
Source§impl<'de> Deserialize<'de> for WorkloadFreeze
impl<'de> Deserialize<'de> for WorkloadFreeze
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 WorkloadFreeze
Source§impl PartialEq for WorkloadFreeze
impl PartialEq for WorkloadFreeze
Source§impl Serialize for WorkloadFreeze
impl Serialize for WorkloadFreeze
impl StructuralPartialEq for WorkloadFreeze
Auto Trait Implementations§
impl Freeze for WorkloadFreeze
impl RefUnwindSafe for WorkloadFreeze
impl Send for WorkloadFreeze
impl Sync for WorkloadFreeze
impl Unpin for WorkloadFreeze
impl UnsafeUnpin for WorkloadFreeze
impl UnwindSafe for WorkloadFreeze
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