Struct kanidm_proto::oauth2::AuthorisationRequest
source · [−]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>,
}
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>
Trait Implementations
sourceimpl Clone for AuthorisationRequest
impl Clone for AuthorisationRequest
sourcefn 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 more
sourceimpl Debug for AuthorisationRequest
impl Debug for AuthorisationRequest
sourceimpl<'de> Deserialize<'de> for AuthorisationRequest
impl<'de> Deserialize<'de> for AuthorisationRequest
sourcefn 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
sourceimpl Serialize for AuthorisationRequest
impl Serialize for AuthorisationRequest
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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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