pub struct NewOrderResponseFull {Show 17 fields
pub symbol: String,
pub order_id: i64,
pub client_order_id: String,
pub transact_time: Timestamp,
pub price: Decimal,
pub orig_qty: Decimal,
pub executed_qty: Decimal,
pub cummulative_quote_qty: Decimal,
pub status: OrderStatus,
pub time_in_force: TimeInForce,
pub order_type: OrderType,
pub side: OrderSide,
pub fills: Vec<OrderFill>,
pub margin_buy_borrow_amount: Option<Decimal>,
pub margin_buy_borrow_asset: Option<String>,
pub is_isolated: bool,
pub self_trade_prevention_mode: STPMode,
}Fields§
§symbol: String§order_id: i64§client_order_id: String§transact_time: Timestamp§price: Decimal§orig_qty: Decimal§executed_qty: Decimal§cummulative_quote_qty: Decimal§status: OrderStatus§time_in_force: TimeInForce§order_type: OrderType§side: OrderSide§fills: Vec<OrderFill>§margin_buy_borrow_amount: Option<Decimal>§margin_buy_borrow_asset: Option<String>§is_isolated: bool§self_trade_prevention_mode: STPModeTrait Implementations§
Source§impl Debug for NewOrderResponseFull
impl Debug for NewOrderResponseFull
Source§impl<'de> Deserialize<'de> for NewOrderResponseFull
impl<'de> Deserialize<'de> for NewOrderResponseFull
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
Source§impl PartialEq for NewOrderResponseFull
impl PartialEq for NewOrderResponseFull
Source§fn eq(&self, other: &NewOrderResponseFull) -> bool
fn eq(&self, other: &NewOrderResponseFull) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NewOrderResponseFull
Auto Trait Implementations§
impl Freeze for NewOrderResponseFull
impl RefUnwindSafe for NewOrderResponseFull
impl Send for NewOrderResponseFull
impl Sync for NewOrderResponseFull
impl Unpin for NewOrderResponseFull
impl UnsafeUnpin for NewOrderResponseFull
impl UnwindSafe for NewOrderResponseFull
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