pub struct OrderCancelResponseResult {Show 28 fields
pub symbol: Option<String>,
pub orig_client_order_id: Option<String>,
pub order_id: Option<i64>,
pub order_list_id: Option<i64>,
pub client_order_id: Option<String>,
pub transact_time: Option<i64>,
pub price: Option<String>,
pub orig_qty: Option<String>,
pub executed_qty: Option<String>,
pub orig_quote_order_qty: Option<String>,
pub cummulative_quote_qty: Option<String>,
pub status: Option<String>,
pub time_in_force: Option<String>,
pub type: Option<String>,
pub side: Option<String>,
pub stop_price: Option<String>,
pub trailing_delta: Option<i64>,
pub iceberg_qty: Option<String>,
pub strategy_id: Option<i64>,
pub strategy_type: Option<i64>,
pub self_trade_prevention_mode: Option<String>,
pub contingency_type: Option<String>,
pub list_status_type: Option<String>,
pub list_order_status: Option<String>,
pub list_client_order_id: Option<String>,
pub transaction_time: Option<i64>,
pub orders: Option<Vec<OpenOrdersCancelAllResponseResultInnerOrdersInner>>,
pub order_reports: Option<Vec<OpenOrdersCancelAllResponseResultInnerOrderReportsInner>>,
}Fields§
§symbol: Option<String>§orig_client_order_id: Option<String>§order_id: Option<i64>§order_list_id: Option<i64>§client_order_id: Option<String>§transact_time: Option<i64>§price: Option<String>§orig_qty: Option<String>§executed_qty: Option<String>§orig_quote_order_qty: Option<String>§cummulative_quote_qty: Option<String>§status: Option<String>§time_in_force: Option<String>§type: Option<String>§side: Option<String>§stop_price: Option<String>§trailing_delta: Option<i64>§iceberg_qty: Option<String>§strategy_id: Option<i64>§strategy_type: Option<i64>§self_trade_prevention_mode: Option<String>§contingency_type: Option<String>§list_status_type: Option<String>§list_order_status: Option<String>§list_client_order_id: Option<String>§transaction_time: Option<i64>§orders: Option<Vec<OpenOrdersCancelAllResponseResultInnerOrdersInner>>§order_reports: Option<Vec<OpenOrdersCancelAllResponseResultInnerOrderReportsInner>>Implementations§
Source§impl OrderCancelResponseResult
impl OrderCancelResponseResult
pub fn new() -> OrderCancelResponseResult
Trait Implementations§
Source§impl Clone for OrderCancelResponseResult
impl Clone for OrderCancelResponseResult
Source§fn clone(&self) -> OrderCancelResponseResult
fn clone(&self) -> OrderCancelResponseResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 OrderCancelResponseResult
impl Debug for OrderCancelResponseResult
Source§impl Default for OrderCancelResponseResult
impl Default for OrderCancelResponseResult
Source§fn default() -> OrderCancelResponseResult
fn default() -> OrderCancelResponseResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OrderCancelResponseResult
impl<'de> Deserialize<'de> for OrderCancelResponseResult
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
Source§impl PartialEq for OrderCancelResponseResult
impl PartialEq for OrderCancelResponseResult
Source§fn eq(&self, other: &OrderCancelResponseResult) -> bool
fn eq(&self, other: &OrderCancelResponseResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for OrderCancelResponseResult
Auto Trait Implementations§
impl Freeze for OrderCancelResponseResult
impl RefUnwindSafe for OrderCancelResponseResult
impl Send for OrderCancelResponseResult
impl Sync for OrderCancelResponseResult
impl Unpin for OrderCancelResponseResult
impl UnsafeUnpin for OrderCancelResponseResult
impl UnwindSafe for OrderCancelResponseResult
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