pub struct BinanceCancelOrderResponse {Show 17 fields
pub price_exponent: i8,
pub qty_exponent: i8,
pub order_id: i64,
pub order_list_id: Option<i64>,
pub transact_time: i64,
pub price_mantissa: i64,
pub orig_qty_mantissa: i64,
pub executed_qty_mantissa: i64,
pub cummulative_quote_qty_mantissa: i64,
pub status: OrderStatus,
pub time_in_force: TimeInForce,
pub order_type: OrderType,
pub side: OrderSide,
pub self_trade_prevention_mode: SelfTradePreventionMode,
pub client_order_id: String,
pub orig_client_order_id: String,
pub symbol: String,
}Expand description
Cancel order response.
Fields§
§price_exponent: i8Price exponent for this response.
qty_exponent: i8Quantity exponent for this response.
order_id: i64Exchange order ID.
order_list_id: Option<i64>Order list ID (for OCO orders).
transact_time: i64Transaction time in microseconds.
price_mantissa: i64Order price mantissa.
orig_qty_mantissa: i64Original order quantity mantissa.
executed_qty_mantissa: i64Executed quantity mantissa.
cummulative_quote_qty_mantissa: i64Cumulative quote quantity mantissa.
status: OrderStatusOrder status.
time_in_force: TimeInForceTime in force.
order_type: OrderTypeOrder type.
side: OrderSideOrder side.
self_trade_prevention_mode: SelfTradePreventionModeSelf-trade prevention mode.
client_order_id: StringClient order ID.
orig_client_order_id: StringOriginal client order ID.
symbol: StringSymbol.
Trait Implementations§
Source§impl Clone for BinanceCancelOrderResponse
impl Clone for BinanceCancelOrderResponse
Source§fn clone(&self) -> BinanceCancelOrderResponse
fn clone(&self) -> BinanceCancelOrderResponse
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 BinanceCancelOrderResponse
impl Debug for BinanceCancelOrderResponse
impl StructuralPartialEq for BinanceCancelOrderResponse
Auto Trait Implementations§
impl Freeze for BinanceCancelOrderResponse
impl RefUnwindSafe for BinanceCancelOrderResponse
impl Send for BinanceCancelOrderResponse
impl Sync for BinanceCancelOrderResponse
impl Unpin for BinanceCancelOrderResponse
impl UnwindSafe for BinanceCancelOrderResponse
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more