pub struct ImagePullProgressFrame {
pub sequence: u64,
pub status: Option<String>,
pub id: Option<String>,
pub current: Option<u64>,
pub total: Option<u64>,
pub message: Option<String>,
pub error: Option<String>,
}Expand description
One retained neutral image-pull progress frame.
Fields§
§sequence: u64One-based stream sequence.
status: Option<String>Docker status text.
id: Option<String>Layer or object identity.
current: Option<u64>Current byte count when reported.
total: Option<u64>Total byte count when reported.
message: Option<String>Human-readable progress text.
error: Option<String>Engine-reported error text.
Trait Implementations§
Source§impl Clone for ImagePullProgressFrame
impl Clone for ImagePullProgressFrame
Source§fn clone(&self) -> ImagePullProgressFrame
fn clone(&self) -> ImagePullProgressFrame
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 ImagePullProgressFrame
impl Debug for ImagePullProgressFrame
Source§impl<'de> Deserialize<'de> for ImagePullProgressFrame
impl<'de> Deserialize<'de> for ImagePullProgressFrame
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 ImagePullProgressFrame
impl PartialEq for ImagePullProgressFrame
Source§fn eq(&self, other: &ImagePullProgressFrame) -> bool
fn eq(&self, other: &ImagePullProgressFrame) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ImagePullProgressFrame
impl Serialize for ImagePullProgressFrame
impl Eq for ImagePullProgressFrame
impl StructuralPartialEq for ImagePullProgressFrame
Auto Trait Implementations§
impl Freeze for ImagePullProgressFrame
impl RefUnwindSafe for ImagePullProgressFrame
impl Send for ImagePullProgressFrame
impl Sync for ImagePullProgressFrame
impl Unpin for ImagePullProgressFrame
impl UnsafeUnpin for ImagePullProgressFrame
impl UnwindSafe for ImagePullProgressFrame
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.