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: Stringorder_id: u64order_list_id: i32client_order_id: Stringprice: f64orig_qty: f64executed_qty: f64cummulative_quote_qty: f64status: OrderStatustime_in_force: TimeInForceorder_type: OrderTypeside: OrderSidestop_price: f64iceberg_qty: f64time: u64update_time: u64is_working: boolorig_quote_order_qty: f64Trait Implementations
sourceimpl<'de> Deserialize<'de> for Order
impl<'de> Deserialize<'de> for Order
sourcefn 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 RefUnwindSafe for Order
impl Send for Order
impl Sync for Order
impl Unpin for Order
impl UnwindSafe for Order
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more