pub struct StatSkillAddClientPacket {
pub action_type: TrainType,
pub action_type_data: Option<StatSkillAddClientPacketActionTypeData>,
}
Expand description
Spending a stat point on a stat or skill
Fields§
§action_type: TrainType
§action_type_data: Option<StatSkillAddClientPacketActionTypeData>
Implementations§
Trait Implementations§
Source§impl Clone for StatSkillAddClientPacket
impl Clone for StatSkillAddClientPacket
Source§fn clone(&self) -> StatSkillAddClientPacket
fn clone(&self) -> StatSkillAddClientPacket
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 StatSkillAddClientPacket
impl Debug for StatSkillAddClientPacket
Source§impl Default for StatSkillAddClientPacket
impl Default for StatSkillAddClientPacket
Source§fn default() -> StatSkillAddClientPacket
fn default() -> StatSkillAddClientPacket
Returns the “default value” for a type. Read more
Source§impl EoSerialize for StatSkillAddClientPacket
impl EoSerialize for StatSkillAddClientPacket
Source§fn serialize(&self, writer: &mut EoWriter) -> Result<(), EoSerializeError>
fn serialize(&self, writer: &mut EoWriter) -> Result<(), EoSerializeError>
Serializes a StatSkillAddClientPacket into the given EoWriter instance
Source§fn deserialize(reader: &EoReader) -> Result<Self, EoReaderError>
fn deserialize(reader: &EoReader) -> Result<Self, EoReaderError>
Deserializes a StatSkillAddClientPacket from an EoReader instance
Source§impl PartialEq for StatSkillAddClientPacket
impl PartialEq for StatSkillAddClientPacket
impl Eq for StatSkillAddClientPacket
impl StructuralPartialEq for StatSkillAddClientPacket
Auto Trait Implementations§
impl Freeze for StatSkillAddClientPacket
impl RefUnwindSafe for StatSkillAddClientPacket
impl Send for StatSkillAddClientPacket
impl Sync for StatSkillAddClientPacket
impl Unpin for StatSkillAddClientPacket
impl UnwindSafe for StatSkillAddClientPacket
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