Struct actix_web_security::authentication::scheme::bearer::jwk::default_jwk::DefaultJwk[][src]

pub struct DefaultJwk {
    pub key_type: String,
    pub key_use: Option<String>,
    pub key_ops: Option<String>,
    pub algorithm: Option<String>,
    pub key_id: Option<String>,
    pub x509_url: Option<String>,
    pub x509_chain: Option<Vec<String>>,
    pub x509_sha1_thumbprint: Option<String>,
    pub x509_sha256_thumbprint: Option<String>,
    pub e: Option<String>,
    pub n: Option<String>,
}

A default JWK type definition.

Fields

key_type: Stringkey_use: Option<String>key_ops: Option<String>algorithm: Option<String>key_id: Option<String>x509_url: Option<String>x509_chain: Option<Vec<String>>x509_sha1_thumbprint: Option<String>x509_sha256_thumbprint: Option<String>e: Option<String>n: Option<String>

Trait Implementations

impl Clone for DefaultJwk[src]

impl Debug for DefaultJwk[src]

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

impl RsaKeyComponents for DefaultJwk[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> Downcast for T where
    T: Any
[src]

impl<T> DowncastSync for T where
    T: Any + Send + Sync
[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> Same<T> for T

type Output = T

Should always be Self

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>,