pub struct SpellRequestClientPacket {
pub spell_id: i32,
pub timestamp: i32,
}
Expand description
Begin spell chanting
Fields§
§spell_id: i32
§timestamp: i32
Implementations§
Trait Implementations§
Source§impl Clone for SpellRequestClientPacket
impl Clone for SpellRequestClientPacket
Source§fn clone(&self) -> SpellRequestClientPacket
fn clone(&self) -> SpellRequestClientPacket
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 SpellRequestClientPacket
impl Debug for SpellRequestClientPacket
Source§impl Default for SpellRequestClientPacket
impl Default for SpellRequestClientPacket
Source§fn default() -> SpellRequestClientPacket
fn default() -> SpellRequestClientPacket
Returns the “default value” for a type. Read more
Source§impl EoSerialize for SpellRequestClientPacket
impl EoSerialize for SpellRequestClientPacket
Source§fn serialize(&self, writer: &mut EoWriter) -> Result<(), EoSerializeError>
fn serialize(&self, writer: &mut EoWriter) -> Result<(), EoSerializeError>
Serializes a SpellRequestClientPacket into the given EoWriter instance
Source§fn deserialize(reader: &EoReader) -> Result<Self, EoReaderError>
fn deserialize(reader: &EoReader) -> Result<Self, EoReaderError>
Deserializes a SpellRequestClientPacket from an EoReader instance
Source§impl PartialEq for SpellRequestClientPacket
impl PartialEq for SpellRequestClientPacket
impl Eq for SpellRequestClientPacket
impl StructuralPartialEq for SpellRequestClientPacket
Auto Trait Implementations§
impl Freeze for SpellRequestClientPacket
impl RefUnwindSafe for SpellRequestClientPacket
impl Send for SpellRequestClientPacket
impl Sync for SpellRequestClientPacket
impl Unpin for SpellRequestClientPacket
impl UnwindSafe for SpellRequestClientPacket
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