pub struct PostMessage {
pub group_id: LegacyId,
pub thread_id: LegacyId,
pub subject: String,
pub message: String,
}
Fields§
§group_id: LegacyId
§thread_id: LegacyId
§subject: String
§message: String
Trait Implementations§
Source§impl BaseParser for PostMessage
impl BaseParser for PostMessage
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 PostMessage
impl Clone for PostMessage
Source§fn clone(&self) -> PostMessage
fn clone(&self) -> PostMessage
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 PostMessage
impl Debug for PostMessage
Source§impl Default for PostMessage
impl Default for PostMessage
Source§fn default() -> PostMessage
fn default() -> PostMessage
Returns the “default value” for a type. Read more
Source§impl PacketVariable for PostMessage
impl PacketVariable for PostMessage
Source§impl PartialEq for PostMessage
impl PartialEq for PostMessage
impl StructuralPartialEq for PostMessage
Auto Trait Implementations§
impl Freeze for PostMessage
impl RefUnwindSafe for PostMessage
impl Send for PostMessage
impl Sync for PostMessage
impl Unpin for PostMessage
impl UnwindSafe for PostMessage
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