pub struct BazaarQuickStatus {
pub product_id: String,
pub sell_price: f64,
pub sell_volume: i64,
pub sell_moving_week: i64,
pub sell_orders: i64,
pub buy_price: f64,
pub buy_volume: i64,
pub buy_moving_week: i64,
pub buy_orders: i64,
pub extra: JsonObject,
}Expand description
Aggregated summary statistics for a bazaar product.
Fields§
§product_id: String§sell_price: f64§sell_volume: i64§sell_moving_week: i64§sell_orders: i64§buy_price: f64§buy_volume: i64§buy_moving_week: i64§buy_orders: i64§extra: JsonObjectTrait Implementations§
Source§impl Clone for BazaarQuickStatus
impl Clone for BazaarQuickStatus
Source§fn clone(&self) -> BazaarQuickStatus
fn clone(&self) -> BazaarQuickStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BazaarQuickStatus
impl Debug for BazaarQuickStatus
Source§impl<'de> Deserialize<'de> for BazaarQuickStatus
impl<'de> Deserialize<'de> for BazaarQuickStatus
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 BazaarQuickStatus
impl RefUnwindSafe for BazaarQuickStatus
impl Send for BazaarQuickStatus
impl Sync for BazaarQuickStatus
impl Unpin for BazaarQuickStatus
impl UnsafeUnpin for BazaarQuickStatus
impl UnwindSafe for BazaarQuickStatus
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