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