Struct michromer::data::OrderResponse [] [src]

pub struct OrderResponse {
    pub ok: bool,
    pub symbol: String,
    pub venue: String,
    pub direction: Option<OrderDirection>,
    pub original_qty: u64,
    pub qty: u64,
    pub price: u64,
    pub order_type: OrderType,
    pub id: u64,
    pub account: String,
    pub ts: DateTime<UTC>,
    pub fills: Vec<Fill>,
    pub total_filled: u64,
    pub open: bool,
}

Fields

ok: bool symbol: String venue: String direction: Option<OrderDirection> original_qty: u64 qty: u64 price: u64 order_type: OrderType id: u64 account: String ts: DateTime<UTC> fills: Vec<Fill> total_filled: u64 open: bool

Trait Implementations

impl Clone for OrderResponse
[src]

fn clone(&self) -> OrderResponse

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Debug for OrderResponse
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.