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>Client-generated request identifier.
This field is **optional.
orig_client_order_id: Option<String>Query order list by listClientOrderId. orderListId or origClientOrderId must be provided.
This field is **optional.
order_list_id: Option<i32>Query order list by orderListId. orderListId or origClientOrderId must be provided.
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 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
Source§impl<'de> Deserialize<'de> for OrderListStatusParams
impl<'de> Deserialize<'de> for OrderListStatusParams
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 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