pub struct ComposeRecreateReceipt {
pub host: HostId,
pub topology_revision: TopologyRevision,
pub project: String,
pub send_state: MutationSendState,
pub stdout: String,
pub stderr: String,
pub output_truncated: bool,
}Expand description
Process driver receipt for Compose force-recreate.
Fields§
§host: HostIdTarget host.
topology_revision: TopologyRevisionExact topology revision.
project: StringProject name.
send_state: MutationSendStateBackend send state.
stdout: StringBounded stdout.
stderr: StringBounded stderr.
output_truncated: boolWhether command output was truncated.
Trait Implementations§
Source§impl Clone for ComposeRecreateReceipt
impl Clone for ComposeRecreateReceipt
Source§fn clone(&self) -> ComposeRecreateReceipt
fn clone(&self) -> ComposeRecreateReceipt
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 ComposeRecreateReceipt
impl Debug for ComposeRecreateReceipt
Source§impl<'de> Deserialize<'de> for ComposeRecreateReceipt
impl<'de> Deserialize<'de> for ComposeRecreateReceipt
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 ComposeRecreateReceipt
impl PartialEq for ComposeRecreateReceipt
Source§fn eq(&self, other: &ComposeRecreateReceipt) -> bool
fn eq(&self, other: &ComposeRecreateReceipt) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ComposeRecreateReceipt
impl Serialize for ComposeRecreateReceipt
impl Eq for ComposeRecreateReceipt
impl StructuralPartialEq for ComposeRecreateReceipt
Auto Trait Implementations§
impl Freeze for ComposeRecreateReceipt
impl RefUnwindSafe for ComposeRecreateReceipt
impl Send for ComposeRecreateReceipt
impl Sync for ComposeRecreateReceipt
impl Unpin for ComposeRecreateReceipt
impl UnsafeUnpin for ComposeRecreateReceipt
impl UnwindSafe for ComposeRecreateReceipt
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.