Struct binance::rest_model::Order
source · pub struct Order {Show 18 fields
pub symbol: String,
pub order_id: u64,
pub order_list_id: i32,
pub client_order_id: String,
pub price: f64,
pub orig_qty: f64,
pub executed_qty: f64,
pub cummulative_quote_qty: f64,
pub status: OrderStatus,
pub time_in_force: TimeInForce,
pub order_type: OrderType,
pub side: OrderSide,
pub stop_price: f64,
pub iceberg_qty: f64,
pub time: u64,
pub update_time: u64,
pub is_working: bool,
pub orig_quote_order_qty: f64,
}Fields§
§symbol: String§order_id: u64§order_list_id: i32§client_order_id: String§price: f64§orig_qty: f64§executed_qty: f64§cummulative_quote_qty: f64§status: OrderStatus§time_in_force: TimeInForce§order_type: OrderType§side: OrderSide§stop_price: f64§iceberg_qty: f64§time: u64§update_time: u64§is_working: bool§orig_quote_order_qty: f64Trait Implementations§
source§impl<'de> Deserialize<'de> for Order
impl<'de> Deserialize<'de> for Order
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