[][src]Struct google_containeranalysis1_beta1::Derived

pub struct Derived {
    pub distance: Option<i32>,
    pub base_resource_url: Option<String>,
    pub layer_info: Option<Vec<Layer>>,
    pub fingerprint: Option<Fingerprint>,
}

Derived describes the derived image portion (Occurrence) of the DockerImage relationship. This image would be produced from a Dockerfile with FROM <DockerImage.Basis in attached Note>.

This type is not used in any activity, and only used as part of another schema.

Fields

distance: Option<i32>

Output only. The number of layers by which this image differs from the associated image basis.

base_resource_url: Option<String>

Output only. This contains the base image URL for the derived image occurrence.

layer_info: Option<Vec<Layer>>

This contains layer-specific metadata, if populated it has length "distance" and is ordered with [distance] being the layer immediately following the base image and [1] being the final layer.

fingerprint: Option<Fingerprint>

Required. The fingerprint of the derived image.

Trait Implementations

impl Part for Derived[src]

impl Default for Derived[src]

impl Clone for Derived[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Derived[src]

impl Serialize for Derived[src]

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

Auto Trait Implementations

impl Send for Derived

impl Unpin for Derived

impl Sync for Derived

impl UnwindSafe for Derived

impl RefUnwindSafe for Derived

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<T, U> Into<U> for T where
    U: From<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> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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