pub struct GetTradeHistoryLeg {
pub category: Option<String>,
pub order_id: Option<String>,
pub symbol: Option<String>,
pub side: Option<String>,
pub price: Option<String>,
pub qty: Option<String>,
pub mark_price: Option<String>,
pub exec_fee: Option<String>,
pub exec_id: Option<String>,
pub result_code: Option<i32>,
pub result_message: Option<String>,
pub reject_party: Option<String>,
}Expand description
Trade history leg.
Fields§
§category: Option<String>§order_id: Option<String>§symbol: Option<String>§side: Option<String>§price: Option<String>§qty: Option<String>§mark_price: Option<String>§exec_fee: Option<String>§exec_id: Option<String>§result_code: Option<i32>§result_message: Option<String>§reject_party: Option<String>Trait Implementations§
Source§impl Clone for GetTradeHistoryLeg
impl Clone for GetTradeHistoryLeg
Source§fn clone(&self) -> GetTradeHistoryLeg
fn clone(&self) -> GetTradeHistoryLeg
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GetTradeHistoryLeg
impl Debug for GetTradeHistoryLeg
Source§impl<'de> Deserialize<'de> for GetTradeHistoryLeg
impl<'de> Deserialize<'de> for GetTradeHistoryLeg
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 GetTradeHistoryLeg
impl RefUnwindSafe for GetTradeHistoryLeg
impl Send for GetTradeHistoryLeg
impl Sync for GetTradeHistoryLeg
impl Unpin for GetTradeHistoryLeg
impl UnsafeUnpin for GetTradeHistoryLeg
impl UnwindSafe for GetTradeHistoryLeg
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