pub struct ImagePullReceipt {
pub host: HostId,
pub topology_revision: TopologyRevision,
pub image: String,
pub send_state: MutationSendState,
pub total_events: u64,
pub progress: Vec<ImagePullProgressFrame>,
pub progress_truncated: bool,
pub progress_delivery_errors: Vec<String>,
}Expand description
Receipt returned after the image pull stream completes.
Fields§
§host: HostIdTarget host.
topology_revision: TopologyRevisionExact topology revision.
image: StringRequested image reference.
send_state: MutationSendStateBackend send state.
total_events: u64Total stream frames observed.
progress: Vec<ImagePullProgressFrame>Bounded retained progress frames.
progress_truncated: boolWhether additional frames were omitted.
progress_delivery_errors: Vec<String>Bounded progress sink failures that did not rewrite execution truth.
Trait Implementations§
Source§impl Clone for ImagePullReceipt
impl Clone for ImagePullReceipt
Source§fn clone(&self) -> ImagePullReceipt
fn clone(&self) -> ImagePullReceipt
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 ImagePullReceipt
impl Debug for ImagePullReceipt
Source§impl<'de> Deserialize<'de> for ImagePullReceipt
impl<'de> Deserialize<'de> for ImagePullReceipt
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 ImagePullReceipt
impl PartialEq for ImagePullReceipt
Source§fn eq(&self, other: &ImagePullReceipt) -> bool
fn eq(&self, other: &ImagePullReceipt) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ImagePullReceipt
impl Serialize for ImagePullReceipt
impl Eq for ImagePullReceipt
impl StructuralPartialEq for ImagePullReceipt
Auto Trait Implementations§
impl Freeze for ImagePullReceipt
impl RefUnwindSafe for ImagePullReceipt
impl Send for ImagePullReceipt
impl Sync for ImagePullReceipt
impl Unpin for ImagePullReceipt
impl UnsafeUnpin for ImagePullReceipt
impl UnwindSafe for ImagePullReceipt
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.