pub struct AuthorizeUrl {
pub url: Url,
pub state: String,
pub pkce_verifier: String,
}Expand description
OAuth2 authorization redirect URL, along with the state and PKCE verifier
Fields§
§url: Url§state: String§pkce_verifier: StringTrait Implementations§
Source§impl Clone for AuthorizeUrl
impl Clone for AuthorizeUrl
Source§fn clone(&self) -> AuthorizeUrl
fn clone(&self) -> AuthorizeUrl
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 moreAuto Trait Implementations§
impl Freeze for AuthorizeUrl
impl RefUnwindSafe for AuthorizeUrl
impl Send for AuthorizeUrl
impl Sync for AuthorizeUrl
impl Unpin for AuthorizeUrl
impl UnsafeUnpin for AuthorizeUrl
impl UnwindSafe for AuthorizeUrl
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