pub struct ContainerLifecycleOutcome {
pub host: HostId,
pub topology_revision: TopologyRevision,
pub container: String,
pub action: ContainerLifecycleAction,
pub changed: bool,
pub send_state: MutationSendState,
pub before: ContainerState,
pub after: Option<ContainerState>,
pub verification_status: VerificationStatus,
pub verification: MutationVerification,
}Expand description
Verified lifecycle mutation outcome.
Fields§
§host: HostIdTarget host.
topology_revision: TopologyRevisionExact topology revision.
container: StringContainer identifier.
action: ContainerLifecycleActionRequested action.
changed: boolWhether a backend mutation was sent.
send_state: MutationSendStateMutation send state.
before: ContainerStateState observed before admission.
after: Option<ContainerState>Last state observed after execution.
verification_status: VerificationStatusIndependent verification status.
verification: MutationVerificationStable verification detail.
Trait Implementations§
Source§impl Clone for ContainerLifecycleOutcome
impl Clone for ContainerLifecycleOutcome
Source§fn clone(&self) -> ContainerLifecycleOutcome
fn clone(&self) -> ContainerLifecycleOutcome
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 ContainerLifecycleOutcome
impl Debug for ContainerLifecycleOutcome
Source§impl<'de> Deserialize<'de> for ContainerLifecycleOutcome
impl<'de> Deserialize<'de> for ContainerLifecycleOutcome
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
Source§impl PartialEq for ContainerLifecycleOutcome
impl PartialEq for ContainerLifecycleOutcome
Source§fn eq(&self, other: &ContainerLifecycleOutcome) -> bool
fn eq(&self, other: &ContainerLifecycleOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ContainerLifecycleOutcome
impl StructuralPartialEq for ContainerLifecycleOutcome
Auto Trait Implementations§
impl Freeze for ContainerLifecycleOutcome
impl RefUnwindSafe for ContainerLifecycleOutcome
impl Send for ContainerLifecycleOutcome
impl Sync for ContainerLifecycleOutcome
impl Unpin for ContainerLifecycleOutcome
impl UnsafeUnpin for ContainerLifecycleOutcome
impl UnwindSafe for ContainerLifecycleOutcome
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.