pub struct RfqRealtimeItem {
pub rfq_id: Option<String>,
pub rfq_link_id: Option<String>,
pub counterparties: Option<Vec<String>>,
pub expires_at: Option<String>,
pub strategy_type: Option<String>,
pub status: Option<String>,
pub accept_other_quote_status: Option<String>,
pub desk_code: Option<String>,
pub created_at: Option<String>,
pub updated_at: Option<String>,
pub legs: Option<Vec<RfqRealtimeLeg>>,
}Expand description
RFQ realtime item.
Fields§
§rfq_id: Option<String>§rfq_link_id: Option<String>§counterparties: Option<Vec<String>>§expires_at: Option<String>§strategy_type: Option<String>§status: Option<String>§accept_other_quote_status: Option<String>§desk_code: Option<String>§created_at: Option<String>§updated_at: Option<String>§legs: Option<Vec<RfqRealtimeLeg>>Trait Implementations§
Source§impl Clone for RfqRealtimeItem
impl Clone for RfqRealtimeItem
Source§fn clone(&self) -> RfqRealtimeItem
fn clone(&self) -> RfqRealtimeItem
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 RfqRealtimeItem
impl Debug for RfqRealtimeItem
Source§impl<'de> Deserialize<'de> for RfqRealtimeItem
impl<'de> Deserialize<'de> for RfqRealtimeItem
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 RfqRealtimeItem
impl RefUnwindSafe for RfqRealtimeItem
impl Send for RfqRealtimeItem
impl Sync for RfqRealtimeItem
impl Unpin for RfqRealtimeItem
impl UnsafeUnpin for RfqRealtimeItem
impl UnwindSafe for RfqRealtimeItem
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