pub struct AuthCodeExchangeCtx<'a> {
pub provider_settings: &'a Value,
pub code: &'a str,
pub verifier: &'a str,
pub redirect_uri: &'a str,
pub extra: Option<&'a Value>,
}Expand description
Inputs for exchanging an authorization code.
Fields§
§provider_settings: &'a Value§code: &'a str§verifier: &'a str§redirect_uri: &'a str§extra: Option<&'a Value>Auto Trait Implementations§
impl<'a> Freeze for AuthCodeExchangeCtx<'a>
impl<'a> RefUnwindSafe for AuthCodeExchangeCtx<'a>
impl<'a> Send for AuthCodeExchangeCtx<'a>
impl<'a> Sync for AuthCodeExchangeCtx<'a>
impl<'a> Unpin for AuthCodeExchangeCtx<'a>
impl<'a> UnsafeUnpin for AuthCodeExchangeCtx<'a>
impl<'a> UnwindSafe for AuthCodeExchangeCtx<'a>
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