pub struct ComposePullReceipt {
pub host: HostId,
pub topology_revision: TopologyRevision,
pub project: String,
pub service: Option<String>,
pub send_state: MutationSendState,
pub progress_delivery_errors: Vec<String>,
pub output_truncated: bool,
}Expand description
Receipt returned when the Compose pull command completes.
Fields§
§host: HostIdTarget host.
topology_revision: TopologyRevisionExact topology revision.
project: StringProject name.
service: Option<String>Optional service filter.
send_state: MutationSendStateBackend send state.
progress_delivery_errors: Vec<String>Bounded progress delivery failures.
output_truncated: boolWhether command output was truncated.
Trait Implementations§
Source§impl Clone for ComposePullReceipt
impl Clone for ComposePullReceipt
Source§fn clone(&self) -> ComposePullReceipt
fn clone(&self) -> ComposePullReceipt
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 ComposePullReceipt
impl Debug for ComposePullReceipt
Source§impl<'de> Deserialize<'de> for ComposePullReceipt
impl<'de> Deserialize<'de> for ComposePullReceipt
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 ComposePullReceipt
impl PartialEq for ComposePullReceipt
Source§fn eq(&self, other: &ComposePullReceipt) -> bool
fn eq(&self, other: &ComposePullReceipt) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ComposePullReceipt
impl Serialize for ComposePullReceipt
impl Eq for ComposePullReceipt
impl StructuralPartialEq for ComposePullReceipt
Auto Trait Implementations§
impl Freeze for ComposePullReceipt
impl RefUnwindSafe for ComposePullReceipt
impl Send for ComposePullReceipt
impl Sync for ComposePullReceipt
impl Unpin for ComposePullReceipt
impl UnsafeUnpin for ComposePullReceipt
impl UnwindSafe for ComposePullReceipt
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.