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

pub struct Fingerprint {
    pub v1_name: String,
    pub v2_blob: Vec<String>,
    pub v2_name: String,
}

A set of properties that uniquely identify a given Docker image.

Fields

v1_name: String

Required. The layer ID of the final layer in the Docker image’s v1 representation.

v2_blob: Vec<String>

Required. The ordered list of v2 blobs that represent a given image.

v2_name: String

Output only. The name of the image’s v2 blobs computed via: [bottom] := v2_blob[bottom] [N] := sha256(v2_blob[N] + “ “ + v2_name[N+1]) Only the name of the final blob is kept.

Trait Implementations

impl Clone for Fingerprint[src]

impl Debug for Fingerprint[src]

impl Default for Fingerprint[src]

impl Message for Fingerprint[src]

impl PartialEq<Fingerprint> for Fingerprint[src]

impl StructuralPartialEq for Fingerprint[src]

Auto Trait Implementations

impl RefUnwindSafe for Fingerprint

impl Send for Fingerprint

impl Sync for Fingerprint

impl Unpin for Fingerprint

impl UnwindSafe for Fingerprint

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]