pub struct ImageLocation { /* private fields */ }Expand description
Location of a given image.
In an open container registry, images are stored in what container-registry calls
“repository” and “image” pairs. For example, the container image specified as
bitnami/nginx:latest would have a repository of bitnami, image of nginx and tag (which
is not part of ImageLocation of latest.
Implementations§
Trait Implementations§
Source§impl Clone for ImageLocation
impl Clone for ImageLocation
Source§fn clone(&self) -> ImageLocation
fn clone(&self) -> ImageLocation
Returns a duplicate of the value. Read more
1.0.0 · 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 ImageLocation
impl Debug for ImageLocation
Source§impl<'de> Deserialize<'de> for ImageLocation
impl<'de> Deserialize<'de> for ImageLocation
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 Display for ImageLocation
impl Display for ImageLocation
Source§impl Hash for ImageLocation
impl Hash for ImageLocation
Source§impl PartialEq for ImageLocation
impl PartialEq for ImageLocation
Source§impl Serialize for ImageLocation
impl Serialize for ImageLocation
impl Eq for ImageLocation
impl StructuralPartialEq for ImageLocation
Auto Trait Implementations§
impl Freeze for ImageLocation
impl RefUnwindSafe for ImageLocation
impl Send for ImageLocation
impl Sync for ImageLocation
impl Unpin for ImageLocation
impl UnwindSafe for ImageLocation
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