pub struct RfqNotification {
pub amount: f64,
pub instrument_name: Option<String>,
pub is_new_instrument: Option<bool>,
pub last_rfq_timestamp: i64,
pub side: Side,
pub state: bool,
}Fields§
§amount: f64§instrument_name: Option<String>§is_new_instrument: Option<bool>§last_rfq_timestamp: i64§side: Side§state: boolTrait Implementations§
Source§impl Clone for RfqNotification
impl Clone for RfqNotification
Source§fn clone(&self) -> RfqNotification
fn clone(&self) -> RfqNotification
Returns a duplicate of the value. Read more
1.0.0 · 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 RfqNotification
impl Debug for RfqNotification
Source§impl Default for RfqNotification
impl Default for RfqNotification
Source§fn default() -> RfqNotification
fn default() -> RfqNotification
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RfqNotification
impl<'de> Deserialize<'de> for RfqNotification
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
Source§impl PartialEq for RfqNotification
impl PartialEq for RfqNotification
Source§impl Serialize for RfqNotification
impl Serialize for RfqNotification
impl StructuralPartialEq for RfqNotification
Auto Trait Implementations§
impl Freeze for RfqNotification
impl RefUnwindSafe for RfqNotification
impl Send for RfqNotification
impl Sync for RfqNotification
impl Unpin for RfqNotification
impl UnwindSafe for RfqNotification
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