pub struct AccountSummary {
pub account: String,
pub tag: String,
pub value: String,
pub currency: String,
}Expand description
Account information as it appears in the TWS’ Account Summary Window
Fields§
§account: StringThe account identifier.
tag: StringThe account’s attribute.
value: StringThe account’s attribute’s value.
currency: StringThe currency in which the value is expressed.
Trait Implementations§
Source§impl ComposeSchema for AccountSummary
impl ComposeSchema for AccountSummary
Source§impl Debug for AccountSummary
impl Debug for AccountSummary
Source§impl Default for AccountSummary
impl Default for AccountSummary
Source§fn default() -> AccountSummary
fn default() -> AccountSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccountSummary
impl<'de> Deserialize<'de> for AccountSummary
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 Serialize for AccountSummary
impl Serialize for AccountSummary
Auto Trait Implementations§
impl Freeze for AccountSummary
impl RefUnwindSafe for AccountSummary
impl Send for AccountSummary
impl Sync for AccountSummary
impl Unpin for AccountSummary
impl UnsafeUnpin for AccountSummary
impl UnwindSafe for AccountSummary
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