pub struct OrderListStatusParams {
pub id: Option<String>,
pub orig_client_order_id: Option<String>,
pub order_list_id: Option<i32>,
pub recv_window: Option<Decimal>,
}Expand description
Request parameters for the [order_list_status] operation.
This struct holds all of the inputs you can pass when calling
order_list_status.
Fields§
§id: Option<String>Unique WebSocket request ID.
This field is **optional.
orig_client_order_id: Option<String>orderIdororigClientOrderIdmustbesent
This field is **optional.
order_list_id: Option<i32>Cancel order list by orderListId
This field is **optional.
recv_window: Option<Decimal>The value cannot be greater than 60000.
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 OrderListStatusParams
impl OrderListStatusParams
Sourcepub fn builder() -> OrderListStatusParamsBuilder
pub fn builder() -> OrderListStatusParamsBuilder
Create a builder for [order_list_status].
Trait Implementations§
Source§impl Clone for OrderListStatusParams
impl Clone for OrderListStatusParams
Source§fn clone(&self) -> OrderListStatusParams
fn clone(&self) -> OrderListStatusParams
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 OrderListStatusParams
impl Debug for OrderListStatusParams
Source§impl Default for OrderListStatusParams
impl Default for OrderListStatusParams
Source§fn default() -> OrderListStatusParams
fn default() -> OrderListStatusParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for OrderListStatusParams
impl RefUnwindSafe for OrderListStatusParams
impl Send for OrderListStatusParams
impl Sync for OrderListStatusParams
impl Unpin for OrderListStatusParams
impl UnsafeUnpin for OrderListStatusParams
impl UnwindSafe for OrderListStatusParams
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