[][src]Struct etrade::orders::Instrument

pub struct Instrument {
    pub product: Product,
    pub symbol_description: String,
    pub order_action: Option<OrderAction>,
    pub quantity_type: Option<QuantityType>,
    pub quantity: f64,
    pub cancel_quantity: f64,
    pub ordered_quantity: f64,
    pub filled_quantity: f64,
    pub average_execution_price: f64,
    pub estimated_commission: f64,
    pub estimated_fees: f64,
    pub bid: f64,
    pub ask: f64,
    pub lastprice: f64,
    pub currency: Currency,
    pub lots: Lots,
    pub mf_quantity: MFQuantity,
    pub osi_key: String,
    pub mf_transaction: Option<MFTransaction>,
    pub reserve_order: bool,
    pub reserve_quantity: f64,
}

Fields

product: Productsymbol_description: Stringorder_action: Option<OrderAction>quantity_type: Option<QuantityType>quantity: f64cancel_quantity: f64ordered_quantity: f64filled_quantity: f64average_execution_price: f64estimated_commission: f64estimated_fees: f64bid: f64ask: f64lastprice: f64currency: Currencylots: Lotsmf_quantity: MFQuantityosi_key: Stringmf_transaction: Option<MFTransaction>reserve_order: boolreserve_quantity: f64

Trait Implementations

impl Clone for Instrument[src]

impl Debug for Instrument[src]

impl Default for Instrument[src]

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

impl Serialize for Instrument[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>,