pub struct ComposeRecreateOutcome {
pub host: HostId,
pub topology_revision: TopologyRevision,
pub project: String,
pub before: ComposeStatus,
pub after: Option<ComposeStatus>,
pub changed: bool,
pub send_state: MutationSendState,
pub stdout: String,
pub stderr: String,
pub output_truncated: bool,
pub verification_status: VerificationStatus,
pub verification: MutationVerification,
}Expand description
Verified Compose replacement outcome.
Fields§
§host: HostIdTarget host.
topology_revision: TopologyRevisionExact topology revision.
project: StringProject name.
before: ComposeStatusPre-replacement status.
after: Option<ComposeStatus>Post-replacement status when readable.
changed: boolWhether a force-recreate command was sent.
send_state: MutationSendStateBackend send state.
stdout: StringBounded stdout.
stderr: StringBounded stderr.
output_truncated: boolWhether command output was truncated.
verification_status: VerificationStatusVerification status.
verification: MutationVerificationVerification explanation.
Trait Implementations§
Source§impl Clone for ComposeRecreateOutcome
impl Clone for ComposeRecreateOutcome
Source§fn clone(&self) -> ComposeRecreateOutcome
fn clone(&self) -> ComposeRecreateOutcome
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 ComposeRecreateOutcome
impl Debug for ComposeRecreateOutcome
Source§impl<'de> Deserialize<'de> for ComposeRecreateOutcome
impl<'de> Deserialize<'de> for ComposeRecreateOutcome
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 ComposeRecreateOutcome
impl PartialEq for ComposeRecreateOutcome
Source§fn eq(&self, other: &ComposeRecreateOutcome) -> bool
fn eq(&self, other: &ComposeRecreateOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ComposeRecreateOutcome
impl Serialize for ComposeRecreateOutcome
impl Eq for ComposeRecreateOutcome
impl StructuralPartialEq for ComposeRecreateOutcome
Auto Trait Implementations§
impl Freeze for ComposeRecreateOutcome
impl RefUnwindSafe for ComposeRecreateOutcome
impl Send for ComposeRecreateOutcome
impl Sync for ComposeRecreateOutcome
impl Unpin for ComposeRecreateOutcome
impl UnsafeUnpin for ComposeRecreateOutcome
impl UnwindSafe for ComposeRecreateOutcome
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.