pub struct AccountAttributes {
pub display_name: String,
pub account_type: String,
pub balance: MoneyObject,
pub created_at: String,
}
Fields§
§display_name: String
§account_type: String
§balance: MoneyObject
§created_at: String
Trait Implementations§
Source§impl Debug for AccountAttributes
impl Debug for AccountAttributes
Source§impl<'de> Deserialize<'de> for AccountAttributes
impl<'de> Deserialize<'de> for AccountAttributes
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 AccountAttributes
impl RefUnwindSafe for AccountAttributes
impl Send for AccountAttributes
impl Sync for AccountAttributes
impl Unpin for AccountAttributes
impl UnwindSafe for AccountAttributes
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