pub struct ImageInspect {
pub id: String,
pub repo_tags: Vec<String>,
pub repo_digests: Vec<String>,
}Expand description
Image inspect response subset.
Fields§
§id: StringImage identifier.
Repo tags.
repo_digests: Vec<String>Repo digests.
Trait Implementations§
Source§impl Clone for ImageInspect
impl Clone for ImageInspect
Source§fn clone(&self) -> ImageInspect
fn clone(&self) -> ImageInspect
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 ImageInspect
impl Debug for ImageInspect
Source§impl<'de> Deserialize<'de> for ImageInspect
impl<'de> Deserialize<'de> for ImageInspect
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
Auto Trait Implementations§
impl Freeze for ImageInspect
impl RefUnwindSafe for ImageInspect
impl Send for ImageInspect
impl Sync for ImageInspect
impl Unpin for ImageInspect
impl UnsafeUnpin for ImageInspect
impl UnwindSafe for ImageInspect
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