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