pub struct GetRfqsListItem {
pub rfq_id: Option<String>,
pub rfq_link_id: Option<String>,
pub counterparties: Option<Vec<String>>,
pub strategy_type: Option<String>,
pub expires_at: 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<GetRfqsLeg>>,
}Expand description
RFQ history list item.
Fields§
§rfq_id: Option<String>§rfq_link_id: Option<String>§counterparties: Option<Vec<String>>§strategy_type: Option<String>§expires_at: 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<GetRfqsLeg>>Trait Implementations§
Source§impl Clone for GetRfqsListItem
impl Clone for GetRfqsListItem
Source§fn clone(&self) -> GetRfqsListItem
fn clone(&self) -> GetRfqsListItem
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 GetRfqsListItem
impl Debug for GetRfqsListItem
Source§impl<'de> Deserialize<'de> for GetRfqsListItem
impl<'de> Deserialize<'de> for GetRfqsListItem
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 GetRfqsListItem
impl RefUnwindSafe for GetRfqsListItem
impl Send for GetRfqsListItem
impl Sync for GetRfqsListItem
impl Unpin for GetRfqsListItem
impl UnsafeUnpin for GetRfqsListItem
impl UnwindSafe for GetRfqsListItem
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