pub struct AccountInformation {
pub account_id: String,
pub account_type: Option<String>,
pub acct_alias: Option<String>,
pub currency: Option<String>,
pub name: Option<String>,
pub master_name: Option<String>,
}Expand description
Account information and metadata
Fields§
§account_id: StringAccount ID
account_type: Option<String>Account type
acct_alias: Option<String>Account alias
currency: Option<String>Currency
name: Option<String>Account name
master_name: Option<String>Master account
Trait Implementations§
Source§impl Clone for AccountInformation
impl Clone for AccountInformation
Source§fn clone(&self) -> AccountInformation
fn clone(&self) -> AccountInformation
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AccountInformation
impl Debug for AccountInformation
Source§impl<'de> Deserialize<'de> for AccountInformation
impl<'de> Deserialize<'de> for AccountInformation
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
Source§impl PartialEq for AccountInformation
impl PartialEq for AccountInformation
Source§impl Serialize for AccountInformation
impl Serialize for AccountInformation
impl StructuralPartialEq for AccountInformation
Auto Trait Implementations§
impl Freeze for AccountInformation
impl RefUnwindSafe for AccountInformation
impl Send for AccountInformation
impl Sync for AccountInformation
impl Unpin for AccountInformation
impl UnwindSafe for AccountInformation
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