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 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 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 for GetMarketplaceOffers
impl PartialEq for GetMarketplaceOffers
impl StructuralPartialEq for GetMarketplaceOffers
Auto Trait Implementations§
impl Freeze for GetMarketplaceOffers
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