pub struct LoginWithEmailUserAttribute {
pub allow_spend: bool,
pub id: usize,
pub eth_address: Option<String>,
pub sol_address: Option<String>,
pub email: String,
pub email_verified: bool,
pub is_subaccount: bool,
pub username: String,
pub main_user_id: Option<String>,
pub wallet: LoginWithEmailWalletAttribute,
pub created_at: String,
pub updated_at: String,
}Fields§
§allow_spend: bool§id: usize§eth_address: Option<String>§sol_address: Option<String>§email: String§email_verified: bool§is_subaccount: bool§username: String§main_user_id: Option<String>§wallet: LoginWithEmailWalletAttribute§created_at: String§updated_at: StringTrait Implementations§
Source§impl Debug for LoginWithEmailUserAttribute
impl Debug for LoginWithEmailUserAttribute
Source§impl<'de> Deserialize<'de> for LoginWithEmailUserAttribute
impl<'de> Deserialize<'de> for LoginWithEmailUserAttribute
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 LoginWithEmailUserAttribute
impl RefUnwindSafe for LoginWithEmailUserAttribute
impl Send for LoginWithEmailUserAttribute
impl Sync for LoginWithEmailUserAttribute
impl Unpin for LoginWithEmailUserAttribute
impl UnwindSafe for LoginWithEmailUserAttribute
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