pub struct GetTradeHistoryTrade {
pub rfq_id: Option<String>,
pub rfq_link_id: Option<String>,
pub quote_id: Option<String>,
pub quote_link_id: Option<String>,
pub quote_side: Option<String>,
pub strategy_type: Option<String>,
pub status: Option<String>,
pub rfq_desk_code: Option<String>,
pub quote_desk_code: Option<String>,
pub created_at: Option<String>,
pub updated_at: Option<String>,
pub legs: Option<Vec<GetTradeHistoryLeg>>,
}Expand description
Trade history entry.
Fields§
§rfq_id: Option<String>§rfq_link_id: Option<String>§quote_id: Option<String>§quote_link_id: Option<String>§quote_side: Option<String>§strategy_type: Option<String>§status: Option<String>§rfq_desk_code: Option<String>§quote_desk_code: Option<String>§created_at: Option<String>§updated_at: Option<String>§legs: Option<Vec<GetTradeHistoryLeg>>Trait Implementations§
Source§impl Clone for GetTradeHistoryTrade
impl Clone for GetTradeHistoryTrade
Source§fn clone(&self) -> GetTradeHistoryTrade
fn clone(&self) -> GetTradeHistoryTrade
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 GetTradeHistoryTrade
impl Debug for GetTradeHistoryTrade
Source§impl<'de> Deserialize<'de> for GetTradeHistoryTrade
impl<'de> Deserialize<'de> for GetTradeHistoryTrade
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 GetTradeHistoryTrade
impl RefUnwindSafe for GetTradeHistoryTrade
impl Send for GetTradeHistoryTrade
impl Sync for GetTradeHistoryTrade
impl Unpin for GetTradeHistoryTrade
impl UnsafeUnpin for GetTradeHistoryTrade
impl UnwindSafe for GetTradeHistoryTrade
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