pub struct Rfq {
pub amount: Option<f64>,
pub instrument_name: Option<String>,
pub last_rfq_timestamp: i64,
pub side: Option<Side>,
pub traded_volume: Option<f64>,
}Fields§
§amount: Option<f64>§instrument_name: Option<String>§last_rfq_timestamp: i64§side: Option<Side>§traded_volume: Option<f64>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Rfq
impl<'de> Deserialize<'de> for Rfq
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
impl StructuralPartialEq for Rfq
Auto Trait Implementations§
impl Freeze for Rfq
impl RefUnwindSafe for Rfq
impl Send for Rfq
impl Sync for Rfq
impl Unpin for Rfq
impl UnwindSafe for Rfq
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