pub struct Execution {Show 15 fields
pub symbol: String,
pub order_id: String,
pub order_link_id: String,
pub side: String,
pub order_price: String,
pub order_qty: String,
pub order_type: String,
pub exec_id: String,
pub exec_price: String,
pub exec_qty: String,
pub exec_fee: String,
pub exec_type: String,
pub exec_value: String,
pub fee_rate: String,
pub exec_time: String,
}Expand description
Execution record.
Fields§
§symbol: StringSymbol
order_id: StringOrder ID
order_link_id: StringOrder link ID
side: StringSide
order_price: StringOrder price
order_qty: StringOrder qty
order_type: StringOrder type
exec_id: StringExec ID
exec_price: StringExec price
exec_qty: StringExec qty
exec_fee: StringExec fee
exec_type: StringExec type
exec_value: StringExec value
fee_rate: StringFee rate
exec_time: StringExec time
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Execution
impl<'de> Deserialize<'de> for Execution
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 Execution
impl RefUnwindSafe for Execution
impl Send for Execution
impl Sync for Execution
impl Unpin for Execution
impl UnsafeUnpin for Execution
impl UnwindSafe for Execution
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