[][src]Struct graph_rs_sdk::oauth::jwtkeys::Keys

pub struct Keys {
    pub kty: Option<String>,
    pub _use: Option<String>,
    pub kid: Option<String>,
    pub x5t: Option<String>,
    pub n: Option<String>,
    pub e: Option<String>,
    pub x5c: Option<Vec<String, Global>>,
}

Fields

kty: Option<String>_use: Option<String>kid: Option<String>x5t: Option<String>n: Option<String>e: Option<String>x5c: Option<Vec<String, Global>>

Implementations

impl Keys[src]

Trait Implementations

impl Clone for Keys[src]

impl Debug for Keys[src]

impl Default for Keys[src]

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

impl Eq for Keys[src]

impl PartialEq<Keys> for Keys[src]

impl Serialize for Keys[src]

impl StructuralEq for Keys[src]

impl StructuralPartialEq for Keys[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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?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> Pointable for T

type Init = T

The type for initializers.

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.