pub struct RefreshAccessToken(/* private fields */);
Available on crate feature
oauth2
only.Expand description
The I/O-free coroutine to refresh an access token.
This coroutine sends the refresh access token HTTP request to the token endpoint and receives either a successful or an error HTTP response.
Refs: AccessTokenResponse
Implementations§
Auto Trait Implementations§
impl !Freeze for RefreshAccessToken
impl !RefUnwindSafe for RefreshAccessToken
impl Send for RefreshAccessToken
impl Sync for RefreshAccessToken
impl Unpin for RefreshAccessToken
impl !UnwindSafe for RefreshAccessToken
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