pub struct CurrentOpenOrdersResponseInner {Show 16 fields
pub order_id: Option<String>,
pub symbol: Option<String>,
pub quote: Option<String>,
pub side: Option<String>,
pub order_type: Option<String>,
pub limit_price: Option<Option<String>>,
pub avg_filled_price: Option<Option<String>>,
pub qty: Option<Option<String>>,
pub notional: Option<Option<String>>,
pub filled_qty: Option<String>,
pub filled_total: Option<Option<String>>,
pub fee: Option<String>,
pub session: Option<Option<String>>,
pub status: Option<String>,
pub created_at: Option<i64>,
pub updated_at: Option<i64>,
}Fields§
§order_id: Option<String>Equity order id.
symbol: Option<String>US-equity ticker.
quote: Option<String>Quote asset (e.g. USDC).
side: Option<String>BUY / SELL.
order_type: Option<String>MARKET / LIMIT.
limit_price: Option<Option<String>>Limit price (USD). Non-null for LIMIT orders, null for MARKET.
avg_filled_price: Option<Option<String>>Average fill price (USD). null until the first fill.
qty: Option<Option<String>>Requested quantity. null for BUY MARKET (use notional instead).
notional: Option<Option<String>>Requested notional. Non-null for BUY MARKET; null otherwise.
filled_qty: Option<String>Cumulative filled quantity.
filled_total: Option<Option<String>>Cumulative filled notional. Populated only for BUY MARKET.
fee: Option<String>Total commission fee (USD).
session: Option<Option<String>>Trading session the order was placed under: RTH / EXTENDED / 24H. null for MARKET orders.
status: Option<String>Order lifecycle status — one of NEW / ACCEPTED / PARTIALLY_FILLED / FILLED / CANCELED / EXPIRED / REJECTED.
created_at: Option<i64>Order creation time (ms epoch).
updated_at: Option<i64>Last update time (ms epoch).
Implementations§
Trait Implementations§
Source§impl Clone for CurrentOpenOrdersResponseInner
impl Clone for CurrentOpenOrdersResponseInner
Source§fn clone(&self) -> CurrentOpenOrdersResponseInner
fn clone(&self) -> CurrentOpenOrdersResponseInner
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 Default for CurrentOpenOrdersResponseInner
impl Default for CurrentOpenOrdersResponseInner
Source§fn default() -> CurrentOpenOrdersResponseInner
fn default() -> CurrentOpenOrdersResponseInner
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CurrentOpenOrdersResponseInner
impl<'de> Deserialize<'de> for CurrentOpenOrdersResponseInner
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
impl StructuralPartialEq for CurrentOpenOrdersResponseInner
Auto Trait Implementations§
impl Freeze for CurrentOpenOrdersResponseInner
impl RefUnwindSafe for CurrentOpenOrdersResponseInner
impl Send for CurrentOpenOrdersResponseInner
impl Sync for CurrentOpenOrdersResponseInner
impl Unpin for CurrentOpenOrdersResponseInner
impl UnsafeUnpin for CurrentOpenOrdersResponseInner
impl UnwindSafe for CurrentOpenOrdersResponseInner
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