pub struct RefreshTokenResponse {
pub token: AuthTokens,
pub message: Option<String>,
}Expand description
The response when refreshing the session JWT.
Fields§
§token: AuthTokens§message: Option<String>Trait Implementations§
source§impl Clone for RefreshTokenResponse
impl Clone for RefreshTokenResponse
source§fn clone(&self) -> RefreshTokenResponse
fn clone(&self) -> RefreshTokenResponse
Returns a copy 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 moresource§impl Debug for RefreshTokenResponse
impl Debug for RefreshTokenResponse
source§impl<'de> Deserialize<'de> for RefreshTokenResponse
impl<'de> Deserialize<'de> for RefreshTokenResponse
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl FromResponse for RefreshTokenResponse
impl FromResponse for RefreshTokenResponse
type Response = RefreshTokenResponse
fn from_response(res: Self::Response) -> Self
Auto Trait Implementations§
impl RefUnwindSafe for RefreshTokenResponse
impl Send for RefreshTokenResponse
impl Sync for RefreshTokenResponse
impl Unpin for RefreshTokenResponse
impl UnwindSafe for RefreshTokenResponse
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