pub struct TradeHistoryItem {
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<TradeHistoryLeg>>,
}Expand description
Trade history item.
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<TradeHistoryLeg>>Trait Implementations§
Source§impl Clone for TradeHistoryItem
impl Clone for TradeHistoryItem
Source§fn clone(&self) -> TradeHistoryItem
fn clone(&self) -> TradeHistoryItem
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 TradeHistoryItem
impl Debug for TradeHistoryItem
Source§impl<'de> Deserialize<'de> for TradeHistoryItem
impl<'de> Deserialize<'de> for TradeHistoryItem
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 TradeHistoryItem
impl RefUnwindSafe for TradeHistoryItem
impl Send for TradeHistoryItem
impl Sync for TradeHistoryItem
impl Unpin for TradeHistoryItem
impl UnsafeUnpin for TradeHistoryItem
impl UnwindSafe for TradeHistoryItem
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