pub struct MarketplaceBuyOfferResult {
pub result: i32,
pub offer_id: LegacyId,
pub new_price: i32,
pub requested_offer_id: LegacyId,
}
Fields§
§result: i32
§offer_id: LegacyId
§new_price: i32
§requested_offer_id: LegacyId
Trait Implementations§
Source§impl BaseParser for MarketplaceBuyOfferResult
impl BaseParser for MarketplaceBuyOfferResult
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 MarketplaceBuyOfferResult
impl Clone for MarketplaceBuyOfferResult
Source§fn clone(&self) -> MarketplaceBuyOfferResult
fn clone(&self) -> MarketplaceBuyOfferResult
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 MarketplaceBuyOfferResult
impl Debug for MarketplaceBuyOfferResult
Source§impl Default for MarketplaceBuyOfferResult
impl Default for MarketplaceBuyOfferResult
Source§fn default() -> MarketplaceBuyOfferResult
fn default() -> MarketplaceBuyOfferResult
Returns the “default value” for a type. Read more
impl StructuralPartialEq for MarketplaceBuyOfferResult
Auto Trait Implementations§
impl Freeze for MarketplaceBuyOfferResult
impl RefUnwindSafe for MarketplaceBuyOfferResult
impl Send for MarketplaceBuyOfferResult
impl Sync for MarketplaceBuyOfferResult
impl Unpin for MarketplaceBuyOfferResult
impl UnwindSafe for MarketplaceBuyOfferResult
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