pub struct TradingItemList {
pub first_user_id: LegacyId,
pub first_user_item_array: Vec<ItemDataStructure>,
pub first_user_num_items: i32,
pub first_user_num_credits: i32,
pub second_user_id: LegacyId,
pub second_user_item_array: Vec<ItemDataStructure>,
pub second_user_num_items: i32,
pub second_user_num_credits: i32,
}
Fields§
§first_user_id: LegacyId
§first_user_item_array: Vec<ItemDataStructure>
§first_user_num_items: i32
§first_user_num_credits: i32
§second_user_id: LegacyId
§second_user_item_array: Vec<ItemDataStructure>
§second_user_num_items: i32
§second_user_num_credits: i32
Trait Implementations§
source§impl BaseParser for TradingItemList
impl BaseParser for TradingItemList
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 TradingItemList
impl Clone for TradingItemList
source§fn clone(&self) -> TradingItemList
fn clone(&self) -> TradingItemList
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 TradingItemList
impl Debug for TradingItemList
source§impl Default for TradingItemList
impl Default for TradingItemList
source§fn default() -> TradingItemList
fn default() -> TradingItemList
Returns the “default value” for a type. Read more
source§impl PacketVariable for TradingItemList
impl PacketVariable for TradingItemList
source§impl PartialEq<TradingItemList> for TradingItemList
impl PartialEq<TradingItemList> for TradingItemList
source§fn eq(&self, other: &TradingItemList) -> bool
fn eq(&self, other: &TradingItemList) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TradingItemList
Auto Trait Implementations§
impl RefUnwindSafe for TradingItemList
impl Send for TradingItemList
impl Sync for TradingItemList
impl Unpin for TradingItemList
impl UnwindSafe for TradingItemList
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