Struct mas_data_model::AuthorizationGrant
source · pub struct AuthorizationGrant {Show 13 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,
}
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
Implementations§
source§impl AuthorizationGrant
impl AuthorizationGrant
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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> 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