pub struct ValidatedTokenRequest<OwnerId> {
pub client: Client,
pub grant_type: GrantType<OwnerId>,
}
Expand description
A validated token request.
Fields§
§client: Client
The client that is requesting the token.
grant_type: GrantType<OwnerId>
The type of grant requested by the client.
Trait Implementations§
Auto Trait Implementations§
impl<OwnerId> Freeze for ValidatedTokenRequest<OwnerId>where
OwnerId: Freeze,
impl<OwnerId> RefUnwindSafe for ValidatedTokenRequest<OwnerId>where
OwnerId: RefUnwindSafe,
impl<OwnerId> Send for ValidatedTokenRequest<OwnerId>where
OwnerId: Send,
impl<OwnerId> Sync for ValidatedTokenRequest<OwnerId>where
OwnerId: Sync,
impl<OwnerId> Unpin for ValidatedTokenRequest<OwnerId>where
OwnerId: Unpin,
impl<OwnerId> UnwindSafe for ValidatedTokenRequest<OwnerId>where
OwnerId: UnwindSafe,
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