Enum oauth2_types::requests::ResponseMode
source · #[non_exhaustive]pub enum ResponseMode {
Query,
Fragment,
FormPost,
Unknown(String),
}
Expand description
The mechanism to be used for returning Authorization Response parameters from the Authorization Endpoint.
Defined in OAuth 2.0 Multiple Response Type Encoding Practices.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Query
Authorization Response parameters are encoded in the query string added
to the redirect_uri
.
Fragment
Authorization Response parameters are encoded in the fragment added to
the redirect_uri
.
FormPost
Authorization Response parameters are encoded as HTML form values that
are auto-submitted in the User Agent, and thus are transmitted via the
HTTP POST
method to the Client, with the result parameters being
encoded in the body using the application/x-www-form-urlencoded
format.
Defined in OAuth 2.0 Form Post Response Mode.
Unknown(String)
An unknown value.
Trait Implementations§
source§impl Clone for ResponseMode
impl Clone for ResponseMode
source§fn clone(&self) -> ResponseMode
fn clone(&self) -> ResponseMode
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 ResponseMode
impl Debug for ResponseMode
source§impl<'de> Deserialize<'de> for ResponseMode
impl<'de> Deserialize<'de> for ResponseMode
source§fn deserialize<__D>(deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for ResponseMode
impl Display for ResponseMode
source§impl FromStr for ResponseMode
impl FromStr for ResponseMode
source§impl Hash for ResponseMode
impl Hash for ResponseMode
source§impl Ord for ResponseMode
impl Ord for ResponseMode
source§fn cmp(&self, other: &ResponseMode) -> Ordering
fn cmp(&self, other: &ResponseMode) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for ResponseMode
impl PartialEq for ResponseMode
source§impl PartialOrd for ResponseMode
impl PartialOrd for ResponseMode
source§impl Serialize for ResponseModewhere
Self: Display,
impl Serialize for ResponseModewhere
Self: Display,
impl Eq for ResponseMode
impl StructuralPartialEq for ResponseMode
Auto Trait Implementations§
impl Freeze for ResponseMode
impl RefUnwindSafe for ResponseMode
impl Send for ResponseMode
impl Sync for ResponseMode
impl Unpin for ResponseMode
impl UnwindSafe for ResponseMode
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> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
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