pub struct ImagePullOutcome {Show 13 fields
pub host: HostId,
pub topology_revision: TopologyRevision,
pub image: String,
pub changed: bool,
pub send_state: MutationSendState,
pub before: Option<ImageIdentity>,
pub after: Option<ImageIdentity>,
pub total_events: u64,
pub progress: Vec<ImagePullProgressFrame>,
pub progress_truncated: bool,
pub progress_delivery_errors: Vec<String>,
pub verification_status: VerificationStatus,
pub verification: MutationVerification,
}Expand description
Verified image pull outcome.
Fields§
§host: HostIdTarget host.
topology_revision: TopologyRevisionExact topology revision.
image: StringRequested image reference.
changed: boolWhether the verified image content identity changed.
send_state: MutationSendStateBackend send state.
before: Option<ImageIdentity>Image identity observed before the pull.
after: Option<ImageIdentity>Image identity observed after the pull.
total_events: u64Total stream events observed.
progress: Vec<ImagePullProgressFrame>Bounded retained progress.
progress_truncated: boolWhether retained progress was truncated.
progress_delivery_errors: Vec<String>Progress delivery failures that did not alter mutation truth.
verification_status: VerificationStatusIndependent verification status.
verification: MutationVerificationVerification explanation.
Trait Implementations§
Source§impl Clone for ImagePullOutcome
impl Clone for ImagePullOutcome
Source§fn clone(&self) -> ImagePullOutcome
fn clone(&self) -> ImagePullOutcome
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 ImagePullOutcome
impl Debug for ImagePullOutcome
Source§impl<'de> Deserialize<'de> for ImagePullOutcome
impl<'de> Deserialize<'de> for ImagePullOutcome
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 ImagePullOutcome
impl PartialEq for ImagePullOutcome
Source§fn eq(&self, other: &ImagePullOutcome) -> bool
fn eq(&self, other: &ImagePullOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ImagePullOutcome
impl Serialize for ImagePullOutcome
impl Eq for ImagePullOutcome
impl StructuralPartialEq for ImagePullOutcome
Auto Trait Implementations§
impl Freeze for ImagePullOutcome
impl RefUnwindSafe for ImagePullOutcome
impl Send for ImagePullOutcome
impl Sync for ImagePullOutcome
impl Unpin for ImagePullOutcome
impl UnsafeUnpin for ImagePullOutcome
impl UnwindSafe for ImagePullOutcome
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.