[][src]Struct graph_rs_sdk::oauth::graphdiscovery::MicrosoftSigningKeysV2

pub struct MicrosoftSigningKeysV2 {
    pub authorization_endpoint: String,
    pub token_endpoint: String,
    pub token_endpoint_auth_methods_supported: Vec<String, Global>,
    pub jwks_uri: String,
    pub response_modes_supported: Vec<String, Global>,
    pub subject_types_supported: Vec<String, Global>,
    pub id_token_signing_alg_values_supported: Vec<String, Global>,
    pub http_logout_supported: bool,
    pub frontchannel_logout_supported: bool,
    pub end_session_endpoint: String,
    pub response_types_supported: Vec<String, Global>,
    pub scopes_supported: Vec<String, Global>,
    pub issuer: String,
    pub claims_supported: Vec<String, Global>,
    pub microsoft_multi_refresh_token: Option<bool>,
    pub check_session_iframe: Option<String>,
    pub userinfo_endpoint: String,
    pub tenant_region_scope: Option<String>,
    pub cloud_instance_name: String,
    pub cloud_graph_host_name: String,
    pub msgraph_host: String,
    pub rbac_url: String,
}

Fields

authorization_endpoint: Stringtoken_endpoint: Stringtoken_endpoint_auth_methods_supported: Vec<String, Global>jwks_uri: Stringresponse_modes_supported: Vec<String, Global>subject_types_supported: Vec<String, Global>id_token_signing_alg_values_supported: Vec<String, Global>http_logout_supported: boolfrontchannel_logout_supported: boolend_session_endpoint: Stringresponse_types_supported: Vec<String, Global>scopes_supported: Vec<String, Global>issuer: Stringclaims_supported: Vec<String, Global>microsoft_multi_refresh_token: Option<bool>check_session_iframe: Option<String>userinfo_endpoint: Stringtenant_region_scope: Option<String>cloud_instance_name: Stringcloud_graph_host_name: Stringmsgraph_host: Stringrbac_url: String

Trait Implementations

impl AsFile for MicrosoftSigningKeysV2[src]

type Error = FromAsError

impl Clone for MicrosoftSigningKeysV2[src]

impl Debug for MicrosoftSigningKeysV2[src]

impl Default for MicrosoftSigningKeysV2[src]

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

impl Eq for MicrosoftSigningKeysV2[src]

impl FromFile<MicrosoftSigningKeysV2> for MicrosoftSigningKeysV2[src]

type Error = FromAsError

impl PartialEq<MicrosoftSigningKeysV2> for MicrosoftSigningKeysV2[src]

impl Serialize for MicrosoftSigningKeysV2[src]

impl StructuralEq for MicrosoftSigningKeysV2[src]

impl StructuralPartialEq for MicrosoftSigningKeysV2[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.