struct RefreshTokenBody {
grant_type: GrantTypeSupported,
refresh_token: String,
client_id: String,
client_secret: String,
}Available on crate feature
oauth only.Fields§
§grant_type: GrantTypeSupported§refresh_token: String§client_id: String§client_secret: StringTrait Implementations§
Source§impl Clone for RefreshTokenBody
impl Clone for RefreshTokenBody
Source§fn clone(&self) -> RefreshTokenBody
fn clone(&self) -> RefreshTokenBody
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for RefreshTokenBody
impl RefUnwindSafe for RefreshTokenBody
impl Send for RefreshTokenBody
impl Sync for RefreshTokenBody
impl Unpin for RefreshTokenBody
impl UnsafeUnpin for RefreshTokenBody
impl UnwindSafe for RefreshTokenBody
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