#[repr(i32)]pub enum EChatRoomServerMsg {
Invalid = 0,
RenameChatRoom = 1,
Joined = 2,
Parted = 3,
Kicked = 4,
Invited = 5,
InviteDismissed = 8,
ChatRoomTaglineChanged = 9,
ChatRoomAvatarChanged = 10,
AppCustom = 11,
}Variants§
Invalid = 0
RenameChatRoom = 1
Joined = 2
Parted = 3
Kicked = 4
Invited = 5
InviteDismissed = 8
ChatRoomTaglineChanged = 9
ChatRoomAvatarChanged = 10
AppCustom = 11
Implementations§
Trait Implementations§
Source§impl Clone for EChatRoomServerMsg
impl Clone for EChatRoomServerMsg
Source§fn clone(&self) -> EChatRoomServerMsg
fn clone(&self) -> EChatRoomServerMsg
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 EChatRoomServerMsg
impl Debug for EChatRoomServerMsg
Source§impl Hash for EChatRoomServerMsg
impl Hash for EChatRoomServerMsg
Source§impl PartialEq for EChatRoomServerMsg
impl PartialEq for EChatRoomServerMsg
impl Copy for EChatRoomServerMsg
impl Eq for EChatRoomServerMsg
impl StructuralPartialEq for EChatRoomServerMsg
Auto Trait Implementations§
impl Freeze for EChatRoomServerMsg
impl RefUnwindSafe for EChatRoomServerMsg
impl Send for EChatRoomServerMsg
impl Sync for EChatRoomServerMsg
impl Unpin for EChatRoomServerMsg
impl UnsafeUnpin for EChatRoomServerMsg
impl UnwindSafe for EChatRoomServerMsg
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