Struct kanidm_proto::oauth2::AuthorisationRequest[][src]

pub struct AuthorisationRequest {
    pub response_type: String,
    pub client_id: String,
    pub state: Base64UrlSafeData,
    pub code_challenge: Base64UrlSafeData,
    pub code_challenge_method: CodeChallengeMethod,
    pub redirect_uri: Url,
    pub scope: String,
}

Fields

response_type: Stringclient_id: Stringstate: Base64UrlSafeDatacode_challenge: Base64UrlSafeDatacode_challenge_method: CodeChallengeMethodredirect_uri: Urlscope: String

Trait Implementations

impl Debug for AuthorisationRequest[src]

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

impl Serialize for AuthorisationRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for AuthorisationRequest

impl Send for AuthorisationRequest

impl Sync for AuthorisationRequest

impl Unpin for AuthorisationRequest

impl UnwindSafe for AuthorisationRequest

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]