pub struct GetAccountResponse {
pub local_id: String,
pub email: String,
pub password_hash: String,
pub email_verified: bool,
pub password_updated_at: u64,
pub provider_user_info: Vec<ProviderUserInfo>,
pub valid_since: String,
pub last_login_at: String,
pub created_at: String,
pub last_refresh_at: String,
}Fields§
§local_id: String§email: String§password_hash: String§email_verified: bool§password_updated_at: u64§provider_user_info: Vec<ProviderUserInfo>§valid_since: String§last_login_at: String§created_at: String§last_refresh_at: StringTrait Implementations§
Source§impl Debug for GetAccountResponse
impl Debug for GetAccountResponse
Source§impl<'de> Deserialize<'de> for GetAccountResponse
impl<'de> Deserialize<'de> for GetAccountResponse
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 GetAccountResponse
impl RefUnwindSafe for GetAccountResponse
impl Send for GetAccountResponse
impl Sync for GetAccountResponse
impl Unpin for GetAccountResponse
impl UnwindSafe for GetAccountResponse
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