pub struct ImageStatus {
pub id: u64,
pub size: u64,
pub repo_tags: Vec<String>,
pub repo_digests: Vec<String>,
pub spec: ImageSpec,
pub pulled_tick: u64,
}Expand description
Status of a pulled image.
Fields§
§id: u64Unique image identifier.
size: u64Size in bytes.
Repository tags (e.g., [“nginx:latest”, “nginx:1.25”]).
repo_digests: Vec<String>Repository digests.
spec: ImageSpecImage spec that was pulled.
pulled_tick: u64Tick when the image was pulled.
Trait Implementations§
Source§impl Clone for ImageStatus
impl Clone for ImageStatus
Source§fn clone(&self) -> ImageStatus
fn clone(&self) -> ImageStatus
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ImageStatus
impl RefUnwindSafe for ImageStatus
impl Send for ImageStatus
impl Sync for ImageStatus
impl Unpin for ImageStatus
impl UnwindSafe for ImageStatus
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)