pub struct BaseImage {
pub layer_count: Option<i32>,
pub name: Option<String>,
pub repository: Option<String>,
}Expand description
BaseImage describes a base image of a container image.
This type is not used in any activity, and only used as part of another schema.
Fields§
§layer_count: Option<i32>The number of layers that the base image is composed of.
name: Option<String>The name of the base image.
repository: Option<String>The repository name in which the base image is from.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for BaseImage
impl<'de> Deserialize<'de> for BaseImage
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
impl Part for BaseImage
Auto Trait Implementations§
impl Freeze for BaseImage
impl RefUnwindSafe for BaseImage
impl Send for BaseImage
impl Sync for BaseImage
impl Unpin for BaseImage
impl UnwindSafe for BaseImage
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