pub struct ExecutionFastData {
pub category: String,
pub symbol: String,
pub exec_id: String,
pub exec_price: String,
pub exec_qty: String,
pub order_id: String,
pub is_maker: Option<bool>,
pub order_link_id: Option<String>,
pub side: String,
pub exec_time: String,
pub seq: Option<i64>,
}Expand description
Fast execution data (low-latency) from private WebSocket stream.
Fields§
§category: StringCategory.
symbol: StringSymbol.
exec_id: StringExecution ID.
exec_price: StringExecution price.
exec_qty: StringExecution quantity.
order_id: StringOrder ID.
is_maker: Option<bool>Is maker.
order_link_id: Option<String>User custom order ID.
side: StringSide.
exec_time: StringExecution time.
seq: Option<i64>Sequence number.
Trait Implementations§
Source§impl Clone for ExecutionFastData
impl Clone for ExecutionFastData
Source§fn clone(&self) -> ExecutionFastData
fn clone(&self) -> ExecutionFastData
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 ExecutionFastData
impl Debug for ExecutionFastData
Source§impl<'de> Deserialize<'de> for ExecutionFastData
impl<'de> Deserialize<'de> for ExecutionFastData
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 ExecutionFastData
impl RefUnwindSafe for ExecutionFastData
impl Send for ExecutionFastData
impl Sync for ExecutionFastData
impl Unpin for ExecutionFastData
impl UnwindSafe for ExecutionFastData
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