Struct kanidmd_lib::idm::oauth2::AuthorisationRequest
[−]pub struct AuthorisationRequest {
pub response_type: String,
pub client_id: String,
pub state: String,
pub pkce_request: Option<PkceRequest>,
pub redirect_uri: Url,
pub scope: String,
pub nonce: Option<String>,
pub oidc_ext: AuthorisationRequestOidc,
pub unknown_keys: BTreeMap<String, Value, Global>,
}
Fields
response_type: String
client_id: String
state: String
pkce_request: Option<PkceRequest>
redirect_uri: Url
scope: String
nonce: Option<String>
oidc_ext: AuthorisationRequestOidc
unknown_keys: BTreeMap<String, Value, Global>
Trait Implementations
impl Clone for AuthorisationRequest
impl Clone for AuthorisationRequest
fn clone(&self) -> AuthorisationRequest
fn clone(&self) -> AuthorisationRequest
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Debug for AuthorisationRequest
impl Debug for AuthorisationRequest
impl<'de> Deserialize<'de> for AuthorisationRequest
impl<'de> Deserialize<'de> for AuthorisationRequest
fn deserialize<__D>(
__deserializer: __D
) -> Result<AuthorisationRequest, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<AuthorisationRequest, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Serialize for AuthorisationRequest
impl Serialize for AuthorisationRequest
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
Auto Trait Implementations
impl RefUnwindSafe for AuthorisationRequest
impl Send for AuthorisationRequest
impl Sync for AuthorisationRequest
impl Unpin for AuthorisationRequest
impl UnwindSafe for AuthorisationRequest
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more