pub struct AuthUrlResult {
pub url: Url,
pub state: String,
pub nonce: Option<String>,
}Expand description
Result from building an authorization URL
Fields§
§url: UrlThe generated authorization URL
state: StringThe state parameter (either provided or generated)
nonce: Option<String>The nonce parameter (either provided or generated, if openid scope requested)
Trait Implementations§
Source§impl Clone for AuthUrlResult
impl Clone for AuthUrlResult
Source§fn clone(&self) -> AuthUrlResult
fn clone(&self) -> AuthUrlResult
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 AuthUrlResult
impl RefUnwindSafe for AuthUrlResult
impl Send for AuthUrlResult
impl Sync for AuthUrlResult
impl Unpin for AuthUrlResult
impl UnwindSafe for AuthUrlResult
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