Struct ib_client::models::transactions_transactions::TransactionsTransactions[][src]

pub struct TransactionsTransactions {
    pub acctid: Option<String>,
    pub conid: Option<f32>,
    pub cur: Option<String>,
    pub fx_rate: Option<f32>,
    pub desc: Option<String>,
    pub date: Option<String>,
    pub _type: Option<String>,
    pub qty: Option<f32>,
    pub pr: Option<f32>,
    pub amt: Option<f32>,
}

Fields

acctid: Option<String>conid: Option<f32>cur: Option<String>

currency code

fx_rate: Option<f32>

Conversion rate from asset currency to response currency

desc: Option<String>

Transaction description

date: Option<String>

Date of transaction. Epoch time, GMT

_type: Option<String>

Transaction Type Name: Examples: "Sell", "Buy", "Corporate Action", "Dividend Payment", "Transfer", "Payment in Lieu" Dividends and Transfers do not have price and quantity in response

qty: Option<f32>

Not applicable for all transaction types

pr: Option<f32>

In asset currency. Not be applicable for all transaction types.

amt: Option<f32>

Raw value, no formatting. Net transaction amount (may include commission, tax). In asset currency

Implementations

impl TransactionsTransactions[src]

Trait Implementations

impl Clone for TransactionsTransactions[src]

impl Debug for TransactionsTransactions[src]

impl<'de> Deserialize<'de> for TransactionsTransactions[src]

impl PartialEq<TransactionsTransactions> for TransactionsTransactions[src]

impl Serialize for TransactionsTransactions[src]

impl StructuralPartialEq for TransactionsTransactions[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.