[][src]Struct rusoto_ecr::Layer

pub struct Layer {
    pub layer_availability: Option<String>,
    pub layer_digest: Option<String>,
    pub layer_size: Option<i64>,
    pub media_type: Option<String>,
}

An object representing an Amazon ECR image layer.

Fields

layer_availability: Option<String>

The availability status of the image layer.

layer_digest: Option<String>

The sha256 digest of the image layer.

layer_size: Option<i64>

The size, in bytes, of the image layer.

media_type: Option<String>

The media type of the layer, such as application/vnd.docker.image.rootfs.diff.tar.gzip or application/vnd.oci.image.layer.v1.tar+gzip.

Trait Implementations

impl Clone for Layer[src]

impl Debug for Layer[src]

impl Default for Layer[src]

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

impl PartialEq<Layer> for Layer[src]

impl StructuralPartialEq for Layer[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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.