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
sourceimpl<'a, SCOPE: Clone> Clone for AuthorizationCodeGrantInfo<'a, SCOPE> where
SCOPE: Scope,
impl<'a, SCOPE: Clone> Clone for AuthorizationCodeGrantInfo<'a, SCOPE> where
SCOPE: Scope,
sourcefn clone(&self) -> AuthorizationCodeGrantInfo<'a, SCOPE>
fn clone(&self) -> AuthorizationCodeGrantInfo<'a, SCOPE>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more