pub struct MarketPrice {
pub adjusted_price: Option<f32>,
pub average_price: Option<f32>,
pub type_id: i32,
}Fields§
§adjusted_price: Option<f32>§average_price: Option<f32>§type_id: i32Trait Implementations§
Source§impl Debug for MarketPrice
impl Debug for MarketPrice
Source§impl<'de> Deserialize<'de> for MarketPrice
impl<'de> Deserialize<'de> for MarketPrice
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 MarketPrice
impl RefUnwindSafe for MarketPrice
impl Send for MarketPrice
impl Sync for MarketPrice
impl Unpin for MarketPrice
impl UnwindSafe for MarketPrice
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