[][src]Struct etrade::transactions::Brokerage

pub struct Brokerage {
    pub transaction_type: String,
    pub product: Product,
    pub quantity: f64,
    pub price: f64,
    pub settlement_currency: String,
    pub payment_currency: String,
    pub fee: f64,
    pub memo: String,
    pub check_no: String,
    pub order_no: String,
}

Fields

transaction_type: Stringproduct: Productquantity: f64price: f64settlement_currency: Stringpayment_currency: Stringfee: f64memo: Stringcheck_no: Stringorder_no: String

Trait Implementations

impl Clone for Brokerage[src]

impl Debug for Brokerage[src]

impl Default for Brokerage[src]

impl<'de> Deserialize<'de> for Brokerage where
    Brokerage: Default
[src]

impl Serialize for Brokerage[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> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,