[][src]Struct fxa_client::oauth::AuthorizationParameters

pub struct AuthorizationParameters {
    pub client_id: String,
    pub scope: Vec<String>,
    pub state: String,
    pub access_type: String,
    pub pkce_params: Option<AuthorizationPKCEParams>,
    pub keys_jwk: Option<String>,
}

Fields

client_id: Stringscope: Vec<String>state: Stringaccess_type: Stringpkce_params: Option<AuthorizationPKCEParams>keys_jwk: Option<String>

Trait Implementations

impl Clone for AuthorizationParameters[src]

impl From<AuthorizationParams> for AuthorizationParameters[src]

impl TryFrom<Url> for AuthorizationParameters[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for AuthorizationParameters

impl Send for AuthorizationParameters

impl Sync for AuthorizationParameters

impl Unpin for AuthorizationParameters

impl UnwindSafe for AuthorizationParameters

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