[][src]Struct skyblock_rs::objects::bazaar::QuickStatus

pub struct QuickStatus {
    pub product_id: String,
    pub buy_price: f32,
    pub buy_volume: f32,
    pub buy_moving_week: f32,
    pub buy_orders: f32,
    pub sell_price: f32,
    pub sell_volume: f32,
    pub sell_moving_week: f32,
    pub sell_orders: f32,
}

Fields

product_id: Stringbuy_price: f32

Weighted average of the top 2% b/v

buy_volume: f32

Sum of item amounts in all orders

buy_moving_week: f32

Historic transacted volume in last week + live states

buy_orders: f32

Number of active orders

sell_price: f32

Weighted average of the top 2% b/v

sell_volume: f32

Sum of item amounts in all orders

sell_moving_week: f32

Historic transacted volume in last week + live states

sell_orders: f32

Number of active orders

Trait Implementations

impl Clone for QuickStatus[src]

impl Debug for QuickStatus[src]

impl<'de> Deserialize<'de> for QuickStatus[src]

impl PartialEq<QuickStatus> for QuickStatus[src]

impl Serialize for QuickStatus[src]

impl StructuralPartialEq for QuickStatus[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.