pub struct AuthorizationRequest {
pub response_type: ResponseType,
pub client_id: String,
pub code_challenge: String,
pub code_challenge_method: Option<CodeChallengeMethod>,
pub redirect_uri: Option<String>,
pub scope: Option<String>,
pub state: Option<String>,
}Fields§
§response_type: ResponseType§client_id: String§code_challenge: String§code_challenge_method: Option<CodeChallengeMethod>§redirect_uri: Option<String>§scope: Option<String>§state: Option<String>Auto Trait Implementations§
impl Freeze for AuthorizationRequest
impl RefUnwindSafe for AuthorizationRequest
impl Send for AuthorizationRequest
impl Sync for AuthorizationRequest
impl Unpin for AuthorizationRequest
impl UnwindSafe for AuthorizationRequest
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