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