[][src]Struct fxa_client::msg_types::AuthorizationParams

pub struct AuthorizationParams {
    pub client_id: String,
    pub scope: String,
    pub state: String,
    pub access_type: String,
    pub pkce_params: Option<AuthorizationPkceParams>,
    pub keys_jwk: Option<String>,
}

Fields

client_id: Stringscope: Stringstate: Stringaccess_type: Stringpkce_params: Option<AuthorizationPkceParams>keys_jwk: Option<String>

Implementations

impl AuthorizationParams[src]

pub fn keys_jwk(&self) -> &str[src]

Returns the value of keys_jwk, or the default value if keys_jwk is unset.

Trait Implementations

impl Clone for AuthorizationParams[src]

impl Debug for AuthorizationParams[src]

impl Default for AuthorizationParams[src]

impl From<AuthorizationParams> for AuthorizationParameters[src]

impl Message for AuthorizationParams[src]

impl PartialEq<AuthorizationParams> for AuthorizationParams[src]

impl StructuralPartialEq for AuthorizationParams[src]

Auto Trait Implementations

impl RefUnwindSafe for AuthorizationParams

impl Send for AuthorizationParams

impl Sync for AuthorizationParams

impl Unpin for AuthorizationParams

impl UnwindSafe for AuthorizationParams

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, U> Into<U> for T where
    U: From<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>,