pub struct GetOrderListParams {
pub order_list_id: Option<i64>,
pub orig_client_order_id: Option<String>,
pub recv_window: Option<Decimal>,
}Expand description
Request parameters for the [get_order_list] operation.
This struct holds all of the inputs you can pass when calling
get_order_list.
Fields§
§order_list_id: Option<i64>Query order list by orderListId. orderListId or origClientOrderId must be provided.
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.
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 GetOrderListParams
impl GetOrderListParams
Sourcepub fn builder() -> GetOrderListParamsBuilder
pub fn builder() -> GetOrderListParamsBuilder
Create a builder for [get_order_list].
Trait Implementations§
Source§impl Clone for GetOrderListParams
impl Clone for GetOrderListParams
Source§fn clone(&self) -> GetOrderListParams
fn clone(&self) -> GetOrderListParams
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 GetOrderListParams
impl Debug for GetOrderListParams
Source§impl Default for GetOrderListParams
impl Default for GetOrderListParams
Source§fn default() -> GetOrderListParams
fn default() -> GetOrderListParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetOrderListParams
impl<'de> Deserialize<'de> for GetOrderListParams
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 GetOrderListParams
impl RefUnwindSafe for GetOrderListParams
impl Send for GetOrderListParams
impl Sync for GetOrderListParams
impl Unpin for GetOrderListParams
impl UnsafeUnpin for GetOrderListParams
impl UnwindSafe for GetOrderListParams
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