pub struct AuthorizationGrant {Show 14 fields
    pub id: Ulid,
    pub stage: AuthorizationGrantStage,
    pub code: Option<AuthorizationCode>,
    pub client_id: Ulid,
    pub redirect_uri: Url,
    pub scope: Scope,
    pub state: Option<String>,
    pub nonce: Option<String>,
    pub max_age: Option<NonZeroU32>,
    pub response_mode: ResponseMode,
    pub response_type_id_token: bool,
    pub created_at: DateTime<Utc>,
    pub requires_consent: bool,
    pub login_hint: Option<String>,
}Fields§
§id: Ulid§stage: AuthorizationGrantStage§code: Option<AuthorizationCode>§client_id: Ulid§redirect_uri: Url§scope: Scope§state: Option<String>§nonce: Option<String>§max_age: Option<NonZeroU32>§response_mode: ResponseMode§response_type_id_token: bool§created_at: DateTime<Utc>§requires_consent: bool§login_hint: Option<String>Implementations§
Source§impl AuthorizationGrant
 
impl AuthorizationGrant
pub fn max_auth_time(&self) -> DateTime<Utc>
pub fn parse_login_hint(&self, homeserver: &str) -> LoginHint
Methods from Deref<Target = AuthorizationGrantStage>§
Sourcepub fn is_pending(&self) -> bool
 
pub fn is_pending(&self) -> bool
Returns true if the authorization grant stage is Pending.
Sourcepub fn is_fulfilled(&self) -> bool
 
pub fn is_fulfilled(&self) -> bool
Returns true if the authorization grant stage is Fulfilled.
Sourcepub fn is_exchanged(&self) -> bool
 
pub fn is_exchanged(&self) -> bool
Returns true if the authorization grant stage is Exchanged.
Trait Implementations§
Source§impl Clone for AuthorizationGrant
 
impl Clone for AuthorizationGrant
Source§fn clone(&self) -> AuthorizationGrant
 
fn clone(&self) -> AuthorizationGrant
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreSource§impl Debug for AuthorizationGrant
 
impl Debug for AuthorizationGrant
Source§impl Deref for AuthorizationGrant
 
impl Deref for AuthorizationGrant
Source§impl PartialEq for AuthorizationGrant
 
impl PartialEq for AuthorizationGrant
Source§impl Serialize for AuthorizationGrant
 
impl Serialize for AuthorizationGrant
impl Eq for AuthorizationGrant
impl StructuralPartialEq for AuthorizationGrant
Auto Trait Implementations§
impl Freeze for AuthorizationGrant
impl RefUnwindSafe for AuthorizationGrant
impl Send for AuthorizationGrant
impl Sync for AuthorizationGrant
impl Unpin for AuthorizationGrant
impl UnwindSafe for AuthorizationGrant
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.Source§impl<T> Instrument for T
 
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more