pub struct ModMessage {
pub user_id: LegacyId,
pub message: String,
pub _unknown1: String,
pub _unknown2: String,
pub topic_id: i32,
pub issue_id: LegacyId,
}
Fields§
§user_id: LegacyId
§message: String
§_unknown1: String
§_unknown2: String
§topic_id: i32
§issue_id: LegacyId
Trait Implementations§
source§impl BaseParser for ModMessage
impl BaseParser for ModMessage
fn parse(packet: &mut HPacket) -> Self
fn append_to_packet(&self, packet: &mut HPacket)
fn get_direction() -> HDirection
fn get_packet_name() -> String
source§impl Clone for ModMessage
impl Clone for ModMessage
source§fn clone(&self) -> ModMessage
fn clone(&self) -> ModMessage
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 ModMessage
impl Debug for ModMessage
source§impl Default for ModMessage
impl Default for ModMessage
source§fn default() -> ModMessage
fn default() -> ModMessage
Returns the “default value” for a type. Read more
source§impl PacketVariable for ModMessage
impl PacketVariable for ModMessage
source§impl PartialEq<ModMessage> for ModMessage
impl PartialEq<ModMessage> for ModMessage
source§fn eq(&self, other: &ModMessage) -> bool
fn eq(&self, other: &ModMessage) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ModMessage
Auto Trait Implementations§
impl RefUnwindSafe for ModMessage
impl Send for ModMessage
impl Sync for ModMessage
impl Unpin for ModMessage
impl UnwindSafe for ModMessage
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