pub enum GrantInfo<'a, SCOPE>where
SCOPE: Scope,{
AuthorizationCodeGrant(AuthorizationCodeGrantInfo<'a, SCOPE>),
DeviceAuthorizationGrant(DeviceAuthorizationGrantInfo<'a, SCOPE>),
}
Variants§
AuthorizationCodeGrant(AuthorizationCodeGrantInfo<'a, SCOPE>)
DeviceAuthorizationGrant(DeviceAuthorizationGrantInfo<'a, SCOPE>)
Trait Implementations§
Auto Trait Implementations§
impl<'a, SCOPE> Freeze for GrantInfo<'a, SCOPE>
impl<'a, SCOPE> !RefUnwindSafe for GrantInfo<'a, SCOPE>
impl<'a, SCOPE> Send for GrantInfo<'a, SCOPE>where
SCOPE: Sync,
impl<'a, SCOPE> Sync for GrantInfo<'a, SCOPE>where
SCOPE: Sync,
impl<'a, SCOPE> Unpin for GrantInfo<'a, SCOPE>
impl<'a, SCOPE> !UnwindSafe for GrantInfo<'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