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>Client-generated request identifier.
This field is **optional.
symbol: Option<String>If omitted, open orders for all symbols are returned
This field is **optional.
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 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
Source§impl<'de> Deserialize<'de> for OpenOrdersStatusParams
impl<'de> Deserialize<'de> for OpenOrdersStatusParams
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 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