pub struct UserOrderUpdate {Show 30 fields
pub event_type: String,
pub event_time: u64,
pub symbol: String,
pub new_client_order_id: String,
pub side: Side,
pub order_type: OrderType,
pub time_in_force: TimeInForce,
pub qty: Decimal,
pub price: Decimal,
pub stop_price: Decimal,
pub iceberg_qty: Decimal,
pub g: i32,
pub c_ignore: Option<String>,
pub execution_type: OrderExecType,
pub order_status: OrderStatus,
pub order_reject_reason: OrderRejectReason,
pub order_id: u64,
pub qty_last_filled_trade: Decimal,
pub accumulated_qty_filled_trades: Decimal,
pub price_last_filled_trade: Decimal,
pub commission: Decimal,
pub asset_commisioned: Option<String>,
pub trade_order_time: u64,
pub trade_id: i64,
pub i_ignore: u64,
pub w: bool,
pub is_buyer_maker: bool,
pub m_ignore: bool,
pub order_creation_time: u64,
pub cumulative_quote_asset_transacted_qty: Decimal,
}
Fields§
§event_type: String
§event_time: u64
§symbol: String
§new_client_order_id: String
§side: Side
§order_type: OrderType
§time_in_force: TimeInForce
§qty: Decimal
§price: Decimal
§stop_price: Decimal
§iceberg_qty: Decimal
§g: i32
§c_ignore: Option<String>
§execution_type: OrderExecType
§order_status: OrderStatus
§order_reject_reason: OrderRejectReason
§order_id: u64
§qty_last_filled_trade: Decimal
§accumulated_qty_filled_trades: Decimal
§price_last_filled_trade: Decimal
§commission: Decimal
§asset_commisioned: Option<String>
§trade_order_time: u64
§trade_id: i64
§i_ignore: u64
§w: bool
§is_buyer_maker: bool
§m_ignore: bool
§order_creation_time: u64
§cumulative_quote_asset_transacted_qty: Decimal
Trait Implementations§
Source§impl Clone for UserOrderUpdate
impl Clone for UserOrderUpdate
Source§fn clone(&self) -> UserOrderUpdate
fn clone(&self) -> UserOrderUpdate
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for UserOrderUpdate
impl Debug for UserOrderUpdate
Source§impl<'de> Deserialize<'de> for UserOrderUpdate
impl<'de> Deserialize<'de> for UserOrderUpdate
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 UserOrderUpdate
impl RefUnwindSafe for UserOrderUpdate
impl Send for UserOrderUpdate
impl Sync for UserOrderUpdate
impl Unpin for UserOrderUpdate
impl UnwindSafe for UserOrderUpdate
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