pub struct MarginOrderCancellation {
pub symbol: String,
pub order_id: Option<u64>,
pub orig_client_order_id: String,
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,
}Expand description
Margin order cancellation result.
Fields§
§symbol: StringSymbol.
order_id: Option<u64>Order ID.
orig_client_order_id: StringOriginal client order ID.
client_order_id: StringClient order ID.
price: f64Price.
orig_qty: f64Original quantity.
executed_qty: f64Executed quantity.
cummulative_quote_qty: f64Cumulative quote quantity.
status: OrderStatusOrder status.
time_in_force: TimeInForceTime in force.
order_type: OrderTypeOrder type.
side: OrderSideOrder side.
Trait Implementations§
Source§impl Clone for MarginOrderCancellation
impl Clone for MarginOrderCancellation
Source§fn clone(&self) -> MarginOrderCancellation
fn clone(&self) -> MarginOrderCancellation
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 MarginOrderCancellation
impl Debug for MarginOrderCancellation
Source§impl<'de> Deserialize<'de> for MarginOrderCancellation
impl<'de> Deserialize<'de> for MarginOrderCancellation
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 MarginOrderCancellation
impl RefUnwindSafe for MarginOrderCancellation
impl Send for MarginOrderCancellation
impl Sync for MarginOrderCancellation
impl Unpin for MarginOrderCancellation
impl UnwindSafe for MarginOrderCancellation
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