pub struct OrderInfo {Show 15 fields
pub symbol: String,
pub order_id: u64,
pub order_list_id: Option<i64>,
pub client_order_id: String,
pub transact_time: u64,
pub price: Decimal,
pub orig_qty: Decimal,
pub executed_qty: Decimal,
pub cummulative_quote_qty: Decimal,
pub stop_price: Decimal,
pub status: String,
pub time_in_force: String,
pub type_name: String,
pub side: String,
pub fills: Option<Vec<FillInfo>>,
}
Fields§
§symbol: String
§order_id: u64
§order_list_id: Option<i64>
§client_order_id: String
§transact_time: u64
§price: Decimal
§orig_qty: Decimal
§executed_qty: Decimal
§cummulative_quote_qty: Decimal
§stop_price: Decimal
§status: String
§time_in_force: String
§type_name: String
§side: String
§fills: Option<Vec<FillInfo>>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for OrderInfo
impl<'de> Deserialize<'de> for OrderInfo
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
Auto Trait Implementations§
impl Freeze for OrderInfo
impl RefUnwindSafe for OrderInfo
impl Send for OrderInfo
impl Sync for OrderInfo
impl Unpin for OrderInfo
impl UnwindSafe for OrderInfo
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