pub struct QuoteBids {
pub amount: Option<f64>,
pub execution_instruction: Option<String>,
pub expires_at: Option<i64>,
pub last_update_timestamp: Option<i64>,
pub makers: Option<Vec<String>>,
pub price: Option<f64>,
}Fields§
§amount: Option<f64>§execution_instruction: Option<String>§expires_at: Option<i64>§last_update_timestamp: Option<i64>§makers: Option<Vec<String>>§price: Option<f64>Trait Implementations§
Source§impl<'de> Deserialize<'de> for QuoteBids
impl<'de> Deserialize<'de> for QuoteBids
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 QuoteBids
Auto Trait Implementations§
impl Freeze for QuoteBids
impl RefUnwindSafe for QuoteBids
impl Send for QuoteBids
impl Sync for QuoteBids
impl Unpin for QuoteBids
impl UnwindSafe for QuoteBids
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