pub struct BinanceCancelOrderListResponse {
pub order_list_id: i64,
pub contingency_type: ContingencyType,
pub list_status_type: ListStatusType,
pub list_order_status: ListOrderStatus,
pub transaction_time: i64,
pub list_client_order_id: String,
pub symbol: String,
pub orders: Vec<BinanceCancelOrderListOrder>,
pub order_reports: Vec<BinanceCancelOrderResponse>,
}Expand description
Cancel order-list response.
Fields§
§order_list_id: i64Exchange order-list ID.
contingency_type: ContingencyTypeContingency type.
list_status_type: ListStatusTypeList status type.
list_order_status: ListOrderStatusAggregate list order status.
transaction_time: i64Transaction time in microseconds.
list_client_order_id: StringClient order ID for the order list.
symbol: StringTrading pair symbol.
orders: Vec<BinanceCancelOrderListOrder>Orders in the list.
order_reports: Vec<BinanceCancelOrderResponse>Canceled child order reports.
Trait Implementations§
impl StructuralPartialEq for BinanceCancelOrderListResponse
Auto Trait Implementations§
impl Freeze for BinanceCancelOrderListResponse
impl RefUnwindSafe for BinanceCancelOrderListResponse
impl Send for BinanceCancelOrderListResponse
impl Sync for BinanceCancelOrderListResponse
impl Unpin for BinanceCancelOrderListResponse
impl UnsafeUnpin for BinanceCancelOrderListResponse
impl UnwindSafe for BinanceCancelOrderListResponse
Blanket Implementations§
impl<T> Allocation for T
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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> ⓘ
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