pub struct MarketplaceItemStats {
pub average_price: i32,
pub offer_count: i32,
pub history_length: i32,
pub data: Vec<MarketplaceItemStatsData>,
pub furni_category_id: i32,
pub furni_type_id: i32,
}
Fields§
§average_price: i32
§offer_count: i32
§history_length: i32
§data: Vec<MarketplaceItemStatsData>
§furni_category_id: i32
§furni_type_id: i32
Trait Implementations§
Source§impl BaseParser for MarketplaceItemStats
impl BaseParser for MarketplaceItemStats
fn parse(packet: &mut HPacket) -> Self
fn append_to_packet(&self, packet: &mut HPacket)
fn get_direction() -> HDirection
fn get_packet_name() -> String
Source§impl Clone for MarketplaceItemStats
impl Clone for MarketplaceItemStats
Source§fn clone(&self) -> MarketplaceItemStats
fn clone(&self) -> MarketplaceItemStats
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 MarketplaceItemStats
impl Debug for MarketplaceItemStats
Source§impl Default for MarketplaceItemStats
impl Default for MarketplaceItemStats
Source§fn default() -> MarketplaceItemStats
fn default() -> MarketplaceItemStats
Returns the “default value” for a type. Read more
Source§impl PartialEq for MarketplaceItemStats
impl PartialEq for MarketplaceItemStats
impl StructuralPartialEq for MarketplaceItemStats
Auto Trait Implementations§
impl Freeze for MarketplaceItemStats
impl RefUnwindSafe for MarketplaceItemStats
impl Send for MarketplaceItemStats
impl Sync for MarketplaceItemStats
impl Unpin for MarketplaceItemStats
impl UnwindSafe for MarketplaceItemStats
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