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: String§buy_price: f32Weighted average of the top 2% b/v
buy_volume: f32Sum of item amounts in all orders
buy_moving_week: f32Historic transacted volume in last week + live states
buy_orders: f32Number of active orders
sell_price: f32Weighted average of the top 2% b/v
sell_volume: f32Sum of item amounts in all orders
sell_moving_week: f32Historic transacted volume in last week + live states
sell_orders: f32Number of active orders
Trait Implementations§
Source§impl Clone for QuickStatus
impl Clone for QuickStatus
Source§fn clone(&self) -> QuickStatus
fn clone(&self) -> QuickStatus
Returns a duplicate of the value. Read more
1.0.0 · 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 QuickStatus
impl Debug for QuickStatus
Source§impl<'de> Deserialize<'de> for QuickStatus
impl<'de> Deserialize<'de> for QuickStatus
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
Source§impl PartialEq for QuickStatus
impl PartialEq for QuickStatus
Source§impl Serialize for QuickStatus
impl Serialize for QuickStatus
impl StructuralPartialEq for QuickStatus
Auto Trait Implementations§
impl Freeze for QuickStatus
impl RefUnwindSafe for QuickStatus
impl Send for QuickStatus
impl Sync for QuickStatus
impl Unpin for QuickStatus
impl UnsafeUnpin for QuickStatus
impl UnwindSafe for QuickStatus
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