pub struct AccountListItem {
pub account_category: Option<AccountCategory>,
pub account_type: Option<String>,
pub broker: Option<String>,
pub created_at: Option<DateTime<Utc>>,
pub currency: Option<String>,
pub currency_type: Option<String>,
pub excluded_until: Option<i64>,
pub is_disabled: Option<String>,
pub is_virtual: Option<String>,
pub landing_company_name: Option<String>,
pub linked_to: Option<Vec<LinkedToItem>>,
pub loginid: Option<String>,
}
Fields§
§account_category: Option<AccountCategory>
Account category.\n
account_type: Option<String>
Account type.\n
broker: Option<String>
2 letter broker code.\n
created_at: Option<DateTime<Utc>>
Creation time of the account as epoch.\n
currency: Option<String>
Currency of specified account.\n
currency_type: Option<String>
Currency type for the corresponding currency.\n
excluded_until: Option<i64>
Epoch of date till client has excluded him/herself from the website, only present if client is self excluded.\n
is_disabled: Option<String>
Boolean value: 1 or 0, indicating whether the account is marked as disabled or not.\n
is_virtual: Option<String>
Boolean value: 1 or 0, indicating whether the account is a virtual-money account.\n
landing_company_name: Option<String>
Landing company shortcode the account belongs to.\n
linked_to: Option<Vec<LinkedToItem>>
Details of the list of Trading accounts linked to the Wallet account.\n
loginid: Option<String>
The account ID of specified account.\n
Trait Implementations§
Source§impl Clone for AccountListItem
impl Clone for AccountListItem
Source§fn clone(&self) -> AccountListItem
fn clone(&self) -> AccountListItem
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 AccountListItem
impl Debug for AccountListItem
Source§impl<'de> Deserialize<'de> for AccountListItem
impl<'de> Deserialize<'de> for AccountListItem
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 AccountListItem
impl RefUnwindSafe for AccountListItem
impl Send for AccountListItem
impl Sync for AccountListItem
impl Unpin for AccountListItem
impl UnwindSafe for AccountListItem
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