pub struct EquipmentCharacterSelect {
pub boots: i32,
pub armor: i32,
pub hat: i32,
pub shield: i32,
pub weapon: i32,
}
Expand description
Player equipment data. Sent with a character in the character selection list. Note that these values are graphic IDs.
Fields§
§boots: i32
§armor: i32
§hat: i32
§shield: i32
§weapon: i32
Implementations§
Trait Implementations§
Source§impl Clone for EquipmentCharacterSelect
impl Clone for EquipmentCharacterSelect
Source§fn clone(&self) -> EquipmentCharacterSelect
fn clone(&self) -> EquipmentCharacterSelect
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 EquipmentCharacterSelect
impl Debug for EquipmentCharacterSelect
Source§impl Default for EquipmentCharacterSelect
impl Default for EquipmentCharacterSelect
Source§fn default() -> EquipmentCharacterSelect
fn default() -> EquipmentCharacterSelect
Returns the “default value” for a type. Read more
Source§impl EoSerialize for EquipmentCharacterSelect
impl EoSerialize for EquipmentCharacterSelect
Source§fn serialize(&self, writer: &mut EoWriter) -> Result<(), EoSerializeError>
fn serialize(&self, writer: &mut EoWriter) -> Result<(), EoSerializeError>
Serializes a EquipmentCharacterSelect into the given EoWriter instance
Source§fn deserialize(reader: &EoReader) -> Result<Self, EoReaderError>
fn deserialize(reader: &EoReader) -> Result<Self, EoReaderError>
Deserializes a EquipmentCharacterSelect from an EoReader instance
Source§impl PartialEq for EquipmentCharacterSelect
impl PartialEq for EquipmentCharacterSelect
impl Eq for EquipmentCharacterSelect
impl StructuralPartialEq for EquipmentCharacterSelect
Auto Trait Implementations§
impl Freeze for EquipmentCharacterSelect
impl RefUnwindSafe for EquipmentCharacterSelect
impl Send for EquipmentCharacterSelect
impl Sync for EquipmentCharacterSelect
impl Unpin for EquipmentCharacterSelect
impl UnwindSafe for EquipmentCharacterSelect
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