pub struct AuthorizeRequest {
pub response_type: String,
pub client_id: String,
pub redirect_uri: String,
pub state: Option<String>,
pub scope: Option<String>,
pub code_challenge: Option<String>,
pub code_challenge_method: Option<String>,
}Fields§
§response_type: String§client_id: String§redirect_uri: String§state: Option<String>§scope: Option<String>§code_challenge: Option<String>§code_challenge_method: Option<String>Trait Implementations§
Source§impl Clone for AuthorizeRequest
impl Clone for AuthorizeRequest
Source§fn clone(&self) -> AuthorizeRequest
fn clone(&self) -> AuthorizeRequest
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 Debug for AuthorizeRequest
impl Debug for AuthorizeRequest
Source§impl<'de> Deserialize<'de> for AuthorizeRequest
impl<'de> Deserialize<'de> for AuthorizeRequest
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 From<AuthorizeForm> for AuthorizeRequest
impl From<AuthorizeForm> for AuthorizeRequest
Source§fn from(form: AuthorizeForm) -> Self
fn from(form: AuthorizeForm) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AuthorizeRequest
impl RefUnwindSafe for AuthorizeRequest
impl Send for AuthorizeRequest
impl Sync for AuthorizeRequest
impl Unpin for AuthorizeRequest
impl UnsafeUnpin for AuthorizeRequest
impl UnwindSafe for AuthorizeRequest
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