pub struct LiveProductData {
pub buy_summary: Vec<Order>,
pub sell_summary: Vec<Order>,
pub quick_status: QuickStatus,
}Expand description
Current, live data of the auction
Fields§
§buy_summary: Vec<Order>List of the top (up to 30) buy orders
sell_summary: Vec<Order>List of the top (up to 30) sell offers
quick_status: QuickStatusThe current quick stats of a bazaar item
Implementations§
Trait Implementations§
Source§impl Clone for LiveProductData
impl Clone for LiveProductData
Source§fn clone(&self) -> LiveProductData
fn clone(&self) -> LiveProductData
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 LiveProductData
impl Debug for LiveProductData
Source§impl<'de> Deserialize<'de> for LiveProductData
impl<'de> Deserialize<'de> for LiveProductData
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 LiveProductData
impl PartialEq for LiveProductData
Source§impl Serialize for LiveProductData
impl Serialize for LiveProductData
impl StructuralPartialEq for LiveProductData
Auto Trait Implementations§
impl Freeze for LiveProductData
impl RefUnwindSafe for LiveProductData
impl Send for LiveProductData
impl Sync for LiveProductData
impl Unpin for LiveProductData
impl UnsafeUnpin for LiveProductData
impl UnwindSafe for LiveProductData
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