pub struct SignInResponse {
pub id_token: String,
pub access_token: String,
pub refresh_token: Option<String>,
pub expires_at: Option<i64>,
}Fields§
§id_token: String§access_token: String§refresh_token: Option<String>§expires_at: Option<i64>Trait Implementations§
Source§impl Clone for SignInResponse
impl Clone for SignInResponse
Source§fn clone(&self) -> SignInResponse
fn clone(&self) -> SignInResponse
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 moreSource§impl Debug for SignInResponse
impl Debug for SignInResponse
Source§impl<'de> Deserialize<'de> for SignInResponse
impl<'de> Deserialize<'de> for SignInResponse
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
Auto Trait Implementations§
impl Freeze for SignInResponse
impl RefUnwindSafe for SignInResponse
impl Send for SignInResponse
impl Sync for SignInResponse
impl Unpin for SignInResponse
impl UnwindSafe for SignInResponse
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