pub struct ImageTransfer {
pub bytes: u64,
pub loaded_image_id: Option<String>,
}Expand description
Outcome of transferring one image between two daemons.
Fields§
§bytes: u64Bytes streamed from docker save into docker load.
loaded_image_id: Option<String>The ID the target assigned, reported only when the archive carried no tags.
Daemons backed by different image stores reassign IDs on load, so for an untagged image this is the only reference that resolves afterwards.
Trait Implementations§
Source§impl Clone for ImageTransfer
impl Clone for ImageTransfer
Source§fn clone(&self) -> ImageTransfer
fn clone(&self) -> ImageTransfer
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 ImageTransfer
impl Debug for ImageTransfer
impl Eq for ImageTransfer
Source§impl PartialEq for ImageTransfer
impl PartialEq for ImageTransfer
impl StructuralPartialEq for ImageTransfer
Auto Trait Implementations§
impl Freeze for ImageTransfer
impl RefUnwindSafe for ImageTransfer
impl Send for ImageTransfer
impl Sync for ImageTransfer
impl Unpin for ImageTransfer
impl UnsafeUnpin for ImageTransfer
impl UnwindSafe for ImageTransfer
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.