pub struct OrderTicket {Show 26 fields
pub acct_id: String,
pub conid: i64,
pub conidex: String,
pub sec_type: String,
pub c_oid: String,
pub parent_id: String,
pub order_type: String,
pub listing_exchange: String,
pub is_single_group: bool,
pub outside_rth: bool,
pub price: i64,
pub aux_price: String,
pub side: String,
pub ticker: String,
pub tif: String,
pub trailing_amt: i64,
pub trailing_type: String,
pub referrer: String,
pub quantity: i64,
pub cash_qty: i64,
pub fx_qty: i64,
pub use_adaptive: bool,
pub is_ccy_conv: bool,
pub allocation_method: String,
pub strategy: String,
pub strategy_parameters: HashMap<String, Value>,
}
Fields§
§acct_id: String
§conid: i64
§conidex: String
§sec_type: String
§c_oid: String
§parent_id: String
§order_type: String
§listing_exchange: String
§is_single_group: bool
§outside_rth: bool
§price: i64
§aux_price: String
§side: String
§ticker: String
§tif: String
§trailing_amt: i64
§trailing_type: String
§referrer: String
§quantity: i64
§cash_qty: i64
§fx_qty: i64
§use_adaptive: bool
§is_ccy_conv: bool
§allocation_method: String
§strategy: String
§strategy_parameters: HashMap<String, Value>
Trait Implementations§
Source§impl Clone for OrderTicket
impl Clone for OrderTicket
Source§fn clone(&self) -> OrderTicket
fn clone(&self) -> OrderTicket
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for OrderTicket
impl Debug for OrderTicket
Source§impl Default for OrderTicket
impl Default for OrderTicket
Source§fn default() -> OrderTicket
fn default() -> OrderTicket
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OrderTicket
impl<'de> Deserialize<'de> for OrderTicket
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 PartialEq for OrderTicket
impl PartialEq for OrderTicket
Source§impl Serialize for OrderTicket
impl Serialize for OrderTicket
impl StructuralPartialEq for OrderTicket
Auto Trait Implementations§
impl Freeze for OrderTicket
impl RefUnwindSafe for OrderTicket
impl Send for OrderTicket
impl Sync for OrderTicket
impl Unpin for OrderTicket
impl UnwindSafe for OrderTicket
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