pub struct GetMarketplaceOffers {
pub min_price: i32,
pub max_price: i32,
pub search_string: String,
pub sort_key: i32,
}
Fields§
§min_price: i32
§max_price: i32
§search_string: String
§sort_key: i32
Trait Implementations§
source§impl BaseParser for GetMarketplaceOffers
impl BaseParser for GetMarketplaceOffers
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 GetMarketplaceOffers
impl Clone for GetMarketplaceOffers
source§fn clone(&self) -> GetMarketplaceOffers
fn clone(&self) -> GetMarketplaceOffers
Returns a copy 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 GetMarketplaceOffers
impl Debug for GetMarketplaceOffers
source§impl Default for GetMarketplaceOffers
impl Default for GetMarketplaceOffers
source§fn default() -> GetMarketplaceOffers
fn default() -> GetMarketplaceOffers
Returns the “default value” for a type. Read more
source§impl PartialEq<GetMarketplaceOffers> for GetMarketplaceOffers
impl PartialEq<GetMarketplaceOffers> for GetMarketplaceOffers
source§fn eq(&self, other: &GetMarketplaceOffers) -> bool
fn eq(&self, other: &GetMarketplaceOffers) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetMarketplaceOffers
Auto Trait Implementations§
impl RefUnwindSafe for GetMarketplaceOffers
impl Send for GetMarketplaceOffers
impl Sync for GetMarketplaceOffers
impl Unpin for GetMarketplaceOffers
impl UnwindSafe for GetMarketplaceOffers
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