pub struct OAuth2AuthenticationRequestDefinition {
pub encoding: String,
}Expand description
Represents the configuration of an OAUTH2 authentication request
Fields§
§encoding: StringGets/sets the encoding of the authentication request. Defaults to ‘application/x-www-form-urlencoded’
Trait Implementations§
Source§impl Clone for OAuth2AuthenticationRequestDefinition
impl Clone for OAuth2AuthenticationRequestDefinition
Source§fn clone(&self) -> OAuth2AuthenticationRequestDefinition
fn clone(&self) -> OAuth2AuthenticationRequestDefinition
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for OAuth2AuthenticationRequestDefinition
impl Default for OAuth2AuthenticationRequestDefinition
Source§fn default() -> OAuth2AuthenticationRequestDefinition
fn default() -> OAuth2AuthenticationRequestDefinition
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OAuth2AuthenticationRequestDefinition
impl<'de> Deserialize<'de> for OAuth2AuthenticationRequestDefinition
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 PartialEq for OAuth2AuthenticationRequestDefinition
impl PartialEq for OAuth2AuthenticationRequestDefinition
Source§fn eq(&self, other: &OAuth2AuthenticationRequestDefinition) -> bool
fn eq(&self, other: &OAuth2AuthenticationRequestDefinition) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for OAuth2AuthenticationRequestDefinition
impl StructuralPartialEq for OAuth2AuthenticationRequestDefinition
Auto Trait Implementations§
impl Freeze for OAuth2AuthenticationRequestDefinition
impl RefUnwindSafe for OAuth2AuthenticationRequestDefinition
impl Send for OAuth2AuthenticationRequestDefinition
impl Sync for OAuth2AuthenticationRequestDefinition
impl Unpin for OAuth2AuthenticationRequestDefinition
impl UnsafeUnpin for OAuth2AuthenticationRequestDefinition
impl UnwindSafe for OAuth2AuthenticationRequestDefinition
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