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