pub struct LoginWithEmailRes {
pub access_token: Option<String>,
pub refresh_token: Option<String>,
pub user: Option<LoginWithEmailUserAttribute>,
}Fields§
§access_token: Option<String>§refresh_token: Option<String>§user: Option<LoginWithEmailUserAttribute>Trait Implementations§
Source§impl Debug for LoginWithEmailRes
impl Debug for LoginWithEmailRes
Source§impl<'de> Deserialize<'de> for LoginWithEmailRes
impl<'de> Deserialize<'de> for LoginWithEmailRes
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 LoginWithEmailRes
impl RefUnwindSafe for LoginWithEmailRes
impl Send for LoginWithEmailRes
impl Sync for LoginWithEmailRes
impl Unpin for LoginWithEmailRes
impl UnwindSafe for LoginWithEmailRes
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