pub struct DeleteOrderListParams {
pub symbol: String,
pub order_list_id: Option<i64>,
pub list_client_order_id: Option<String>,
pub new_client_order_id: Option<String>,
pub recv_window: Option<Decimal>,
}Expand description
Request parameters for the [delete_order_list] operation.
This struct holds all of the inputs you can pass when calling
delete_order_list.
Fields§
§symbol: StringThe symbol parameter.
This field is **required.
order_list_id: Option<i64>Either orderListId or listClientOrderId must be provided
This field is **optional.
list_client_order_id: Option<String>Either orderListId or listClientOrderId must be provided
This field is **optional.
new_client_order_id: Option<String>Used to uniquely identify this cancel. Automatically generated by default.
This field is **optional.
recv_window: Option<Decimal>Supports up to three decimal places of precision (e.g., 6000.346) so that microseconds may be specified.
This field is **optional.
Implementations§
Source§impl DeleteOrderListParams
impl DeleteOrderListParams
Sourcepub fn builder(symbol: String) -> DeleteOrderListParamsBuilder
pub fn builder(symbol: String) -> DeleteOrderListParamsBuilder
Create a builder for [delete_order_list].
Required parameters:
symbol— String
Trait Implementations§
Source§impl Clone for DeleteOrderListParams
impl Clone for DeleteOrderListParams
Source§fn clone(&self) -> DeleteOrderListParams
fn clone(&self) -> DeleteOrderListParams
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 DeleteOrderListParams
impl Debug for DeleteOrderListParams
Source§impl<'de> Deserialize<'de> for DeleteOrderListParams
impl<'de> Deserialize<'de> for DeleteOrderListParams
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
Auto Trait Implementations§
impl Freeze for DeleteOrderListParams
impl RefUnwindSafe for DeleteOrderListParams
impl Send for DeleteOrderListParams
impl Sync for DeleteOrderListParams
impl Unpin for DeleteOrderListParams
impl UnsafeUnpin for DeleteOrderListParams
impl UnwindSafe for DeleteOrderListParams
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