[][src]Struct gcp_client::google::cloud::binaryauthorization::v1beta1::AttestorPublicKey

pub struct AttestorPublicKey {
    pub comment: String,
    pub id: String,
    pub public_key: Option<PublicKey>,
}

An [attestor public key][google.cloud.binaryauthorization.v1beta1.AttestorPublicKey] that will be used to verify attestations signed by this attestor.

Fields

comment: String

Optional. A descriptive comment. This field may be updated.

id: String

The ID of this public key. Signatures verified by BinAuthz must include the ID of the public key that can be used to verify them, and that ID must match the contents of this field exactly. Additional restrictions on this field can be imposed based on which public key type is encapsulated. See the documentation on public_key cases below for details.

public_key: Option<PublicKey>

Required. A public key reference or serialized instance. This field may be updated.

Trait Implementations

impl Clone for AttestorPublicKey[src]

impl Debug for AttestorPublicKey[src]

impl Default for AttestorPublicKey[src]

impl Message for AttestorPublicKey[src]

impl PartialEq<AttestorPublicKey> for AttestorPublicKey[src]

impl StructuralPartialEq for AttestorPublicKey[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> From<T> 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>, 

impl<T> WithSubscriber for T[src]