pub struct CreateRfqParams {
pub counterparties: Vec<String>,
pub rfq_link_id: Option<String>,
pub anonymous: Option<bool>,
pub strategy_type: Option<String>,
pub list: Vec<CreateRfqLeg>,
}Expand description
Create RFQ request parameters.
Fields§
§counterparties: Vec<String>§rfq_link_id: Option<String>§anonymous: Option<bool>§strategy_type: Option<String>§list: Vec<CreateRfqLeg>Trait Implementations§
Source§impl Clone for CreateRfqParams
impl Clone for CreateRfqParams
Source§fn clone(&self) -> CreateRfqParams
fn clone(&self) -> CreateRfqParams
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 CreateRfqParams
impl Debug for CreateRfqParams
Source§impl<'de> Deserialize<'de> for CreateRfqParams
impl<'de> Deserialize<'de> for CreateRfqParams
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 CreateRfqParams
impl RefUnwindSafe for CreateRfqParams
impl Send for CreateRfqParams
impl Sync for CreateRfqParams
impl Unpin for CreateRfqParams
impl UnsafeUnpin for CreateRfqParams
impl UnwindSafe for CreateRfqParams
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