pub struct ImageIdentity {
pub id: String,
pub repo_tags: Vec<String>,
pub repo_digests: Vec<String>,
}Expand description
Stable image identity observed through the Docker read API.
Fields§
§id: StringDocker image content ID.
Repository tags bound to the image.
repo_digests: Vec<String>Repository digests bound to the image.
Trait Implementations§
Source§impl Clone for ImageIdentity
impl Clone for ImageIdentity
Source§fn clone(&self) -> ImageIdentity
fn clone(&self) -> ImageIdentity
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 ImageIdentity
impl Debug for ImageIdentity
Source§impl<'de> Deserialize<'de> for ImageIdentity
impl<'de> Deserialize<'de> for ImageIdentity
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 ImageIdentity
impl PartialEq for ImageIdentity
Source§fn eq(&self, other: &ImageIdentity) -> bool
fn eq(&self, other: &ImageIdentity) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ImageIdentity
impl Serialize for ImageIdentity
impl Eq for ImageIdentity
impl StructuralPartialEq for ImageIdentity
Auto Trait Implementations§
impl Freeze for ImageIdentity
impl RefUnwindSafe for ImageIdentity
impl Send for ImageIdentity
impl Sync for ImageIdentity
impl Unpin for ImageIdentity
impl UnsafeUnpin for ImageIdentity
impl UnwindSafe for ImageIdentity
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.