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>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
Source§impl<'de> Deserialize<'de> for OpenOrderListParams
impl<'de> Deserialize<'de> for OpenOrderListParams
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 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