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