Enum mas_oidc_client::types::requests::ResponseMode
#[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§
§impl Clone for ResponseMode
impl Clone for ResponseMode
§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 more§impl Debug for ResponseMode
impl Debug for ResponseMode
§impl<'de> Deserialize<'de> for ResponseMode
impl<'de> Deserialize<'de> for ResponseMode
§fn deserialize<__D>(
deserializer: __D,
) -> Result<ResponseMode, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
deserializer: __D,
) -> Result<ResponseMode, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl Display for ResponseMode
impl Display for ResponseMode
§impl FromStr for ResponseMode
impl FromStr for ResponseMode
§type Err = Infallible
type Err = Infallible
The associated error which can be returned from parsing.
§fn from_str(s: &str) -> Result<ResponseMode, <ResponseMode as FromStr>::Err>
fn from_str(s: &str) -> Result<ResponseMode, <ResponseMode as FromStr>::Err>
Parses a string
s
to return a value of this type. Read more§impl Hash for ResponseMode
impl Hash for ResponseMode
§impl Ord for ResponseMode
impl Ord for ResponseMode
§impl PartialEq for ResponseMode
impl PartialEq for ResponseMode
§impl PartialOrd for ResponseMode
impl PartialOrd for ResponseMode
§impl Serialize for ResponseModewhere
ResponseMode: Display,
impl Serialize for ResponseModewhere
ResponseMode: Display,
§fn serialize<__S>(
&self,
serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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> FutureExt for T
impl<T> FutureExt for T
source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
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