[][src]Struct buildkit_frontend::oci::ImageSpecification

pub struct ImageSpecification {
    pub created: Option<DateTime<Utc>>,
    pub author: Option<String>,
    pub architecture: Architecture,
    pub os: OperatingSystem,
    pub config: Option<ImageConfig>,
    pub rootfs: Option<ImageRootfs>,
    pub history: Option<Vec<LayerHistoryItem>>,
}

Fields

created: Option<DateTime<Utc>>

An combined date and time at which the image was created.

author: Option<String>

Gives the name and/or email address of the person or entity which created and is responsible for maintaining the image.

architecture: Architecture

The CPU architecture which the binaries in this image are built to run on.

os: OperatingSystem

The name of the operating system which the image is built to run on.

config: Option<ImageConfig>

The execution parameters which should be used as a base when running a container using the image. This field can be None, in which case any execution parameters should be specified at creation of the container.

rootfs: Option<ImageRootfs>

The rootfs key references the layer content addresses used by the image.

history: Option<Vec<LayerHistoryItem>>

Describes the history of each layer.

Trait Implementations

impl Clone for ImageSpecification[src]

impl PartialEq<ImageSpecification> for ImageSpecification[src]

impl Debug for ImageSpecification[src]

impl Serialize for ImageSpecification[src]

impl<'de> Deserialize<'de> for ImageSpecification[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]