pub struct AdminInteractTellServerPacket {
pub name: String,
pub usage: i32,
pub gold_bank: i32,
pub exp: i32,
pub level: i32,
pub map_id: i32,
pub map_coords: BigCoords,
pub stats: CharacterStatsInfoLookup,
pub weight: Weight,
}Expand description
Admin character info lookup
Fields§
§name: String§usage: i32§gold_bank: i32§exp: i32§level: i32§map_id: i32§map_coords: BigCoords§stats: CharacterStatsInfoLookup§weight: WeightImplementations§
Trait Implementations§
Source§impl Clone for AdminInteractTellServerPacket
impl Clone for AdminInteractTellServerPacket
Source§fn clone(&self) -> AdminInteractTellServerPacket
fn clone(&self) -> AdminInteractTellServerPacket
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 Default for AdminInteractTellServerPacket
impl Default for AdminInteractTellServerPacket
Source§fn default() -> AdminInteractTellServerPacket
fn default() -> AdminInteractTellServerPacket
Returns the “default value” for a type. Read more
Source§impl EoSerialize for AdminInteractTellServerPacket
impl EoSerialize for AdminInteractTellServerPacket
Source§fn serialize(&self, writer: &mut EoWriter) -> Result<(), EoSerializeError>
fn serialize(&self, writer: &mut EoWriter) -> Result<(), EoSerializeError>
Serializes a AdminInteractTellServerPacket into the given EoWriter instance
Source§fn deserialize(reader: &EoReader) -> Result<Self, EoReaderError>
fn deserialize(reader: &EoReader) -> Result<Self, EoReaderError>
Deserializes a AdminInteractTellServerPacket from an EoReader instance
Source§impl PartialEq for AdminInteractTellServerPacket
impl PartialEq for AdminInteractTellServerPacket
Source§fn eq(&self, other: &AdminInteractTellServerPacket) -> bool
fn eq(&self, other: &AdminInteractTellServerPacket) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for AdminInteractTellServerPacket
impl StructuralPartialEq for AdminInteractTellServerPacket
Auto Trait Implementations§
impl Freeze for AdminInteractTellServerPacket
impl RefUnwindSafe for AdminInteractTellServerPacket
impl Send for AdminInteractTellServerPacket
impl Sync for AdminInteractTellServerPacket
impl Unpin for AdminInteractTellServerPacket
impl UnsafeUnpin for AdminInteractTellServerPacket
impl UnwindSafe for AdminInteractTellServerPacket
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