Struct gapi_grpc::google::container::v1beta1::Jwk[][src]

pub struct Jwk {
    pub kty: String,
    pub alg: String,
    pub use: String,
    pub kid: String,
    pub n: String,
    pub e: String,
    pub x: String,
    pub y: String,
    pub crv: String,
}

Jwk is a JSON Web Key as specified in RFC 7517

Fields

kty: String

Key Type.

alg: String

Algorithm.

use: String

Permitted uses for the public keys.

kid: String

Key ID.

n: String

Used for RSA keys.

e: String

Used for RSA keys.

x: String

Used for ECDSA keys.

y: String

Used for ECDSA keys.

crv: String

Used for ECDSA keys.

Trait Implementations

impl Clone for Jwk[src]

impl Debug for Jwk[src]

impl Default for Jwk[src]

impl Message for Jwk[src]

impl PartialEq<Jwk> for Jwk[src]

impl StructuralPartialEq for Jwk[src]

Auto Trait Implementations

impl RefUnwindSafe for Jwk

impl Send for Jwk

impl Sync for Jwk

impl Unpin for Jwk

impl UnwindSafe for Jwk

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]