pub struct CancelOpenOrderRequestQuery {
pub ext_operator: Option<String>,
pub manual_indicator: Option<bool>,
pub manual_cancel_time: Option<i32>,
}Fields§
§ext_operator: Option<String>ExtOperator is used to identify external operator.
manual_indicator: Option<bool>For all orders for US Futures products, clients must submit this flag to indicate whether the order was originated manually (by a natural person) or automatically (by an automated trading system transmitting orders without human intervention). Submit a True value to indicate a manually originated order, and submit a False value to indicate an automated order. Orders for USFUT products that do not include this field will be rejected.
manual_cancel_time: Option<i32>Time of manual cancel.
- Example:
Some(1_799_796_559i32)
Trait Implementations§
Source§impl Clone for CancelOpenOrderRequestQuery
impl Clone for CancelOpenOrderRequestQuery
Source§fn clone(&self) -> CancelOpenOrderRequestQuery
fn clone(&self) -> CancelOpenOrderRequestQuery
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 CancelOpenOrderRequestQuery
impl Debug for CancelOpenOrderRequestQuery
impl StructuralPartialEq for CancelOpenOrderRequestQuery
Auto Trait Implementations§
impl Freeze for CancelOpenOrderRequestQuery
impl RefUnwindSafe for CancelOpenOrderRequestQuery
impl Send for CancelOpenOrderRequestQuery
impl Sync for CancelOpenOrderRequestQuery
impl Unpin for CancelOpenOrderRequestQuery
impl UnsafeUnpin for CancelOpenOrderRequestQuery
impl UnwindSafe for CancelOpenOrderRequestQuery
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