[][src]Struct ib::models::ModifyOrder

pub struct ModifyOrder { /* fields omitted */ }

Methods

impl ModifyOrder
[src]

pub fn new() -> ModifyOrder
[src]

pub fn set_acct_id(&mut self, acct_id: String)
[src]

pub fn with_acct_id(self, acct_id: String) -> ModifyOrder
[src]

pub fn acct_id(&self) -> Option<&String>
[src]

pub fn reset_acct_id(&mut self)
[src]

pub fn set_conid(&mut self, conid: i32)
[src]

pub fn with_conid(self, conid: i32) -> ModifyOrder
[src]

pub fn conid(&self) -> Option<&i32>
[src]

pub fn reset_conid(&mut self)
[src]

pub fn set_order_id(&mut self, order_id: i32)
[src]

pub fn with_order_id(self, order_id: i32) -> ModifyOrder
[src]

pub fn order_id(&self) -> Option<&i32>
[src]

pub fn reset_order_id(&mut self)
[src]

pub fn set_order_type(&mut self, order_type: String)
[src]

pub fn with_order_type(self, order_type: String) -> ModifyOrder
[src]

pub fn order_type(&self) -> Option<&String>
[src]

pub fn reset_order_type(&mut self)
[src]

pub fn set_outside_rth(&mut self, outside_rth: bool)
[src]

pub fn with_outside_rth(self, outside_rth: bool) -> ModifyOrder
[src]

pub fn outside_rth(&self) -> Option<&bool>
[src]

pub fn reset_outside_rth(&mut self)
[src]

pub fn set_price(&mut self, price: f32)
[src]

pub fn with_price(self, price: f32) -> ModifyOrder
[src]

pub fn price(&self) -> Option<&f32>
[src]

pub fn reset_price(&mut self)
[src]

pub fn set_aux_price(&mut self, aux_price: f32)
[src]

pub fn with_aux_price(self, aux_price: f32) -> ModifyOrder
[src]

pub fn aux_price(&self) -> Option<&f32>
[src]

pub fn reset_aux_price(&mut self)
[src]

pub fn set_side(&mut self, side: String)
[src]

pub fn with_side(self, side: String) -> ModifyOrder
[src]

pub fn side(&self) -> Option<&String>
[src]

pub fn reset_side(&mut self)
[src]

pub fn set_listing_exchange(&mut self, listing_exchange: String)
[src]

pub fn with_listing_exchange(self, listing_exchange: String) -> ModifyOrder
[src]

pub fn listing_exchange(&self) -> Option<&String>
[src]

pub fn reset_listing_exchange(&mut self)
[src]

pub fn set_ticker(&mut self, ticker: String)
[src]

pub fn with_ticker(self, ticker: String) -> ModifyOrder
[src]

pub fn ticker(&self) -> Option<&String>
[src]

pub fn reset_ticker(&mut self)
[src]

pub fn set_tif(&mut self, tif: String)
[src]

pub fn with_tif(self, tif: String) -> ModifyOrder
[src]

pub fn tif(&self) -> Option<&String>
[src]

pub fn reset_tif(&mut self)
[src]

pub fn set_quantity(&mut self, quantity: f32)
[src]

pub fn with_quantity(self, quantity: f32) -> ModifyOrder
[src]

pub fn quantity(&self) -> Option<&f32>
[src]

pub fn reset_quantity(&mut self)
[src]

Trait Implementations

impl Debug for ModifyOrder
[src]

impl Serialize for ModifyOrder
[src]

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

Auto Trait Implementations

impl Send for ModifyOrder

impl Sync for ModifyOrder

Blanket Implementations

impl<T> From for T
[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Erased for T

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