pub struct LowestPrice {
pub minimum_bid_price: Option<f64>,
pub uninterruptable_price: Option<f64>,
}Fields§
§minimum_bid_price: Option<f64>§uninterruptable_price: Option<f64>Trait Implementations§
Source§impl Debug for LowestPrice
impl Debug for LowestPrice
Source§impl Default for LowestPrice
impl Default for LowestPrice
Source§fn default() -> LowestPrice
fn default() -> LowestPrice
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LowestPrice
impl<'de> Deserialize<'de> for LowestPrice
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 LowestPrice
impl RefUnwindSafe for LowestPrice
impl Send for LowestPrice
impl Sync for LowestPrice
impl Unpin for LowestPrice
impl UnwindSafe for LowestPrice
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