pub struct AuthorizationUrlParams {
pub authorization_endpoint: String,
pub client_id: String,
pub redirect_uri: String,
pub scopes: Vec<String>,
pub state: String,
pub code_challenge: String,
pub code_challenge_method: String,
pub audience: Option<String>,
}Expand description
Parameters for building authorization URL
Fields§
§client_id: String§redirect_uri: String§scopes: Vec<String>§state: String§code_challenge: String§code_challenge_method: String§audience: Option<String>Trait Implementations§
Source§impl Clone for AuthorizationUrlParams
impl Clone for AuthorizationUrlParams
Source§fn clone(&self) -> AuthorizationUrlParams
fn clone(&self) -> AuthorizationUrlParams
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for AuthorizationUrlParams
impl RefUnwindSafe for AuthorizationUrlParams
impl Send for AuthorizationUrlParams
impl Sync for AuthorizationUrlParams
impl Unpin for AuthorizationUrlParams
impl UnwindSafe for AuthorizationUrlParams
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