pub struct RefreshResponse {
pub access_token: String,
pub refresh_token: Option<String>,
pub access_expires_at: i64,
pub refresh_expires_at: Option<i64>,
}
Fields§
§access_token: String
§refresh_token: Option<String>
§access_expires_at: i64
§refresh_expires_at: Option<i64>
Trait Implementations§
Source§impl Debug for RefreshResponse
impl Debug for RefreshResponse
Auto Trait Implementations§
impl Freeze for RefreshResponse
impl RefUnwindSafe for RefreshResponse
impl Send for RefreshResponse
impl Sync for RefreshResponse
impl Unpin for RefreshResponse
impl UnwindSafe for RefreshResponse
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