pub struct ValidatedAuthorize {
pub application: Application,
pub redirect_uri: String,
pub scopes: Vec<String>,
pub state: String,
pub code_challenge: String,
pub code_challenge_method: String,
pub nonce: Option<String>,
}Expand description
Validated parameters after all authorization checks pass.
Fields§
§application: Application§redirect_uri: String§scopes: Vec<String>§state: String§code_challenge: String§code_challenge_method: String§nonce: Option<String>Auto Trait Implementations§
impl Freeze for ValidatedAuthorize
impl RefUnwindSafe for ValidatedAuthorize
impl Send for ValidatedAuthorize
impl Sync for ValidatedAuthorize
impl Unpin for ValidatedAuthorize
impl UnsafeUnpin for ValidatedAuthorize
impl UnwindSafe for ValidatedAuthorize
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> 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