pub struct AuthorizationCodeGrantInfo<'a, SCOPE>where
SCOPE: Scope,{
pub provider: &'a (dyn ProviderExtAuthorizationCodeGrant<Scope = SCOPE> + Send + Sync),
pub authorization_request_scopes: Option<&'a Vec<SCOPE>>,
pub authorization_request_nonce: Option<&'a Nonce>,
}
Fields§
§provider: &'a (dyn ProviderExtAuthorizationCodeGrant<Scope = SCOPE> + Send + Sync)
Trait Implementations§
Source§impl<'a, SCOPE> Clone for AuthorizationCodeGrantInfo<'a, SCOPE>
impl<'a, SCOPE> Clone for AuthorizationCodeGrantInfo<'a, SCOPE>
Source§fn clone(&self) -> AuthorizationCodeGrantInfo<'a, SCOPE>
fn clone(&self) -> AuthorizationCodeGrantInfo<'a, SCOPE>
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl<'a, SCOPE> Freeze for AuthorizationCodeGrantInfo<'a, SCOPE>
impl<'a, SCOPE> !RefUnwindSafe for AuthorizationCodeGrantInfo<'a, SCOPE>
impl<'a, SCOPE> Send for AuthorizationCodeGrantInfo<'a, SCOPE>where
SCOPE: Sync,
impl<'a, SCOPE> Sync for AuthorizationCodeGrantInfo<'a, SCOPE>where
SCOPE: Sync,
impl<'a, SCOPE> Unpin for AuthorizationCodeGrantInfo<'a, SCOPE>
impl<'a, SCOPE> !UnwindSafe for AuthorizationCodeGrantInfo<'a, SCOPE>
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