#[non_exhaustive]pub struct ContainerRecipeSummary { /* private fields */ }
Expand description
A summary of a container recipe
Implementations§
source§impl ContainerRecipeSummary
impl ContainerRecipeSummary
sourcepub fn container_type(&self) -> Option<&ContainerType>
pub fn container_type(&self) -> Option<&ContainerType>
Specifies the type of container, such as "Docker".
sourcepub fn platform(&self) -> Option<&Platform>
pub fn platform(&self) -> Option<&Platform>
The system platform for the container, such as Windows or Linux.
sourcepub fn parent_image(&self) -> Option<&str>
pub fn parent_image(&self) -> Option<&str>
The base image for the container recipe.
sourcepub fn date_created(&self) -> Option<&str>
pub fn date_created(&self) -> Option<&str>
The date when this container recipe was created.
Tags that are attached to the container recipe.
source§impl ContainerRecipeSummary
impl ContainerRecipeSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ContainerRecipeSummary
.
Trait Implementations§
source§impl Clone for ContainerRecipeSummary
impl Clone for ContainerRecipeSummary
source§fn clone(&self) -> ContainerRecipeSummary
fn clone(&self) -> ContainerRecipeSummary
Returns a copy 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 ContainerRecipeSummary
impl Debug for ContainerRecipeSummary
source§impl PartialEq<ContainerRecipeSummary> for ContainerRecipeSummary
impl PartialEq<ContainerRecipeSummary> for ContainerRecipeSummary
source§fn eq(&self, other: &ContainerRecipeSummary) -> bool
fn eq(&self, other: &ContainerRecipeSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.