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>Either orderListId or listClientOrderId must be provided
This field is **optional.
orig_client_order_id: Option<String>The orig_client_order_id parameter.
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 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
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