[][src]Struct auth0::authentication::get_token::resource_owner_password::RequestParameters

pub struct RequestParameters {
    pub grant_type: String,
    pub client_id: String,
    pub client_secret: Option<String>,
    pub audience: Option<String>,
    pub username: String,
    pub password: String,
    pub scope: Option<String>,
    pub realm: Option<String>,
    pub auth0_forwarded_for: Option<String>,
}

Fields

grant_type: Stringclient_id: Stringclient_secret: Option<String>audience: Option<String>username: Stringpassword: Stringscope: Option<String>realm: Option<String>auth0_forwarded_for: Option<String>

Trait Implementations

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

impl Serialize for RequestParameters[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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.