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