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