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