pub struct ExecutionReportEvent {Show 31 fields
pub event_time: u64,
pub symbol: String,
pub client_order_id: String,
pub side: OrderSide,
pub order_type: OrderType,
pub time_in_force: TimeInForce,
pub quantity: f64,
pub price: f64,
pub stop_price: f64,
pub iceberg_quantity: f64,
pub order_list_id: i64,
pub orig_client_order_id: String,
pub execution_type: ExecutionType,
pub order_status: OrderStatus,
pub reject_reason: String,
pub order_id: u64,
pub last_executed_quantity: f64,
pub cumulative_filled_quantity: f64,
pub last_executed_price: f64,
pub commission: f64,
pub commission_asset: Option<String>,
pub transaction_time: u64,
pub trade_id: i64,
pub ignore_a: u64,
pub is_on_book: bool,
pub is_maker: bool,
pub ignore_b: bool,
pub order_creation_time: u64,
pub cumulative_quote_quantity: f64,
pub last_quote_quantity: f64,
pub quote_order_quantity: f64,
}Expand description
Order execution report event (user data stream).
Fields§
§event_time: u64Event time.
symbol: StringSymbol.
client_order_id: StringClient order ID.
side: OrderSideSide.
order_type: OrderTypeOrder type.
time_in_force: TimeInForceTime in force.
quantity: f64Order quantity.
price: f64Order price.
stop_price: f64Stop price.
iceberg_quantity: f64Iceberg quantity.
order_list_id: i64Order list ID.
orig_client_order_id: StringOriginal client order ID (for cancel/replace).
execution_type: ExecutionTypeCurrent execution type.
order_status: OrderStatusCurrent order status.
reject_reason: StringOrder reject reason.
order_id: u64Order ID.
last_executed_quantity: f64Last executed quantity.
cumulative_filled_quantity: f64Cumulative filled quantity.
last_executed_price: f64Last executed price.
commission: f64Commission amount.
commission_asset: Option<String>Commission asset.
transaction_time: u64Transaction time.
trade_id: i64Trade ID.
ignore_a: u64Ignore.
is_on_book: boolIs the order on the book.
is_maker: boolIs this trade the maker side.
ignore_b: boolIgnore.
order_creation_time: u64Order creation time.
cumulative_quote_quantity: f64Cumulative quote asset transacted quantity.
last_quote_quantity: f64Last quote asset transacted quantity.
quote_order_quantity: f64Quote order quantity.
Trait Implementations§
Source§impl Clone for ExecutionReportEvent
impl Clone for ExecutionReportEvent
Source§fn clone(&self) -> ExecutionReportEvent
fn clone(&self) -> ExecutionReportEvent
Returns a duplicate of the value. Read more
1.0.0 · 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 ExecutionReportEvent
impl Debug for ExecutionReportEvent
Source§impl<'de> Deserialize<'de> for ExecutionReportEvent
impl<'de> Deserialize<'de> for ExecutionReportEvent
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 ExecutionReportEvent
impl RefUnwindSafe for ExecutionReportEvent
impl Send for ExecutionReportEvent
impl Sync for ExecutionReportEvent
impl Unpin for ExecutionReportEvent
impl UnwindSafe for ExecutionReportEvent
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