Struct gapi_grpc::grafeas::v1::ImageOccurrence[][src]

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

Details of the derived image portion of the DockerImage relationship. This image would be produced from a Dockerfile with FROM <DockerImage.Basis in attached Note>.

Fields

fingerprint: Option<Fingerprint>

Required. The fingerprint of the derived image.

distance: i32

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

layer_info: 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.

base_resource_url: String

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

Trait Implementations

impl Clone for ImageOccurrence[src]

impl Debug for ImageOccurrence[src]

impl Default for ImageOccurrence[src]

impl Message for ImageOccurrence[src]

impl PartialEq<ImageOccurrence> for ImageOccurrence[src]

impl StructuralPartialEq for ImageOccurrence[src]

Auto Trait Implementations

impl RefUnwindSafe for ImageOccurrence

impl Send for ImageOccurrence

impl Sync for ImageOccurrence

impl Unpin for ImageOccurrence

impl UnwindSafe for ImageOccurrence

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> 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> IntoRequest<T> for T[src]

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]