pub struct MarketPlaceOffer {
pub offer_id: LegacyId,
pub status: i32,
pub furni_type: i32,
pub furni_id: LegacyId,
pub stuff_data: StuffData,
pub extra_data: String,
pub price: i32,
pub time_left_minutes: i32,
pub average_price: i32,
pub offer_count: i32,
}
Fields§
§offer_id: LegacyId
§status: i32
§furni_type: i32
§furni_id: LegacyId
§stuff_data: StuffData
§extra_data: String
§price: i32
§time_left_minutes: i32
§average_price: i32
§offer_count: i32
Trait Implementations§
Source§impl Clone for MarketPlaceOffer
impl Clone for MarketPlaceOffer
Source§fn clone(&self) -> MarketPlaceOffer
fn clone(&self) -> MarketPlaceOffer
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 MarketPlaceOffer
impl Debug for MarketPlaceOffer
Source§impl Default for MarketPlaceOffer
impl Default for MarketPlaceOffer
Source§fn default() -> MarketPlaceOffer
fn default() -> MarketPlaceOffer
Returns the “default value” for a type. Read more
Source§impl PacketVariable for MarketPlaceOffer
impl PacketVariable for MarketPlaceOffer
Source§impl PartialEq for MarketPlaceOffer
impl PartialEq for MarketPlaceOffer
impl StructuralPartialEq for MarketPlaceOffer
Auto Trait Implementations§
impl Freeze for MarketPlaceOffer
impl RefUnwindSafe for MarketPlaceOffer
impl Send for MarketPlaceOffer
impl Sync for MarketPlaceOffer
impl Unpin for MarketPlaceOffer
impl UnwindSafe for MarketPlaceOffer
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