pub struct PendingAuthorization {
pub authorization_url: String,
/* private fields */
}Expand description
A flow that has been started but not yet completed.
Holds the two values that must survive until the code comes back: the state used
to recognise our own redirect, and the PKCE verifier that proves we started it.
Fields§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PendingAuthorization
impl RefUnwindSafe for PendingAuthorization
impl Send for PendingAuthorization
impl Sync for PendingAuthorization
impl Unpin for PendingAuthorization
impl UnsafeUnpin for PendingAuthorization
impl UnwindSafe for PendingAuthorization
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