pub struct DeleteOrderV1Params {
pub symbol: String,
pub timestamp: i64,
pub order_id: Option<i64>,
pub client_order_id: Option<String>,
pub recv_window: Option<i64>,
}Expand description
struct for passing parameters to the method delete_order_v1
Fields§
§symbol: StringOption trading pair, e.g BTC-200730-9000-C
timestamp: i64§order_id: Option<i64>Order ID, e.g 4611875134427365377
client_order_id: Option<String>User-defined order ID, e.g 10000
recv_window: Option<i64>Trait Implementations§
Source§impl Clone for DeleteOrderV1Params
impl Clone for DeleteOrderV1Params
Source§fn clone(&self) -> DeleteOrderV1Params
fn clone(&self) -> DeleteOrderV1Params
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 DeleteOrderV1Params
impl Debug for DeleteOrderV1Params
Source§impl Default for DeleteOrderV1Params
impl Default for DeleteOrderV1Params
Source§fn default() -> DeleteOrderV1Params
fn default() -> DeleteOrderV1Params
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DeleteOrderV1Params
impl RefUnwindSafe for DeleteOrderV1Params
impl Send for DeleteOrderV1Params
impl Sync for DeleteOrderV1Params
impl Unpin for DeleteOrderV1Params
impl UnsafeUnpin for DeleteOrderV1Params
impl UnwindSafe for DeleteOrderV1Params
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