pub struct OpenOrderListParams {
pub recv_window: Option<Decimal>,
}Expand description
Request parameters for the [open_order_list] operation.
This struct holds all of the inputs you can pass when calling
open_order_list.
Fields§
§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 OpenOrderListParams
impl OpenOrderListParams
Sourcepub fn builder() -> OpenOrderListParamsBuilder
pub fn builder() -> OpenOrderListParamsBuilder
Create a builder for [open_order_list].
Trait Implementations§
Source§impl Clone for OpenOrderListParams
impl Clone for OpenOrderListParams
Source§fn clone(&self) -> OpenOrderListParams
fn clone(&self) -> OpenOrderListParams
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 OpenOrderListParams
impl Debug for OpenOrderListParams
Source§impl Default for OpenOrderListParams
impl Default for OpenOrderListParams
Source§fn default() -> OpenOrderListParams
fn default() -> OpenOrderListParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for OpenOrderListParams
impl RefUnwindSafe for OpenOrderListParams
impl Send for OpenOrderListParams
impl Sync for OpenOrderListParams
impl Unpin for OpenOrderListParams
impl UnsafeUnpin for OpenOrderListParams
impl UnwindSafe for OpenOrderListParams
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