pub struct ApiAccount {
pub custom_id: String,
pub devices: Vec<ApiAccountDevice>,
pub disable_time: String,
pub email: String,
pub user: ApiUser,
pub verify_time: String,
pub wallet: String,
}Expand description
A user with additional account details. Always the current user.
Fields§
§custom_id: String§devices: Vec<ApiAccountDevice>§disable_time: String§email: String§user: ApiUser§verify_time: String§wallet: StringTrait Implementations§
Source§impl DeJson for ApiAccount
impl DeJson for ApiAccount
Source§impl Debug for ApiAccount
impl Debug for ApiAccount
Source§impl Default for ApiAccount
impl Default for ApiAccount
Source§fn default() -> ApiAccount
fn default() -> ApiAccount
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ApiAccount
impl RefUnwindSafe for ApiAccount
impl Send for ApiAccount
impl Sync for ApiAccount
impl Unpin for ApiAccount
impl UnwindSafe for ApiAccount
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