pub struct TradeFillData {
pub common: OrderUpdateCommon,
pub side: String,
pub price: Option<String>,
pub quantity: Option<String>,
pub last_filled_qty: String,
pub last_filled_price: String,
pub commission: String,
}Expand description
Order data for TRADE fills
Fields§
§common: OrderUpdateCommon§side: String§price: Option<String>§quantity: Option<String>§last_filled_qty: String§last_filled_price: String§commission: StringTrait Implementations§
Source§impl Clone for TradeFillData
impl Clone for TradeFillData
Source§fn clone(&self) -> TradeFillData
fn clone(&self) -> TradeFillData
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 TradeFillData
impl Debug for TradeFillData
Source§impl<'de> Deserialize<'de> for TradeFillData
impl<'de> Deserialize<'de> for TradeFillData
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 TradeFillData
impl RefUnwindSafe for TradeFillData
impl Send for TradeFillData
impl Sync for TradeFillData
impl Unpin for TradeFillData
impl UnsafeUnpin for TradeFillData
impl UnwindSafe for TradeFillData
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