#[repr(i32)]pub enum EChatEntryType {
Show 15 variants
Invalid = 0,
ChatMsg = 1,
Typing = 2,
InviteGame = 3,
Emote = 4,
LobbyGameStart = 5,
LeftConversation = 6,
Entered = 7,
WasKicked = 8,
WasBanned = 9,
Disconnected = 10,
HistoricalChat = 11,
Reserved1 = 12,
Reserved2 = 13,
LinkBlocked = 14,
}Variants§
Invalid = 0
ChatMsg = 1
Typing = 2
InviteGame = 3
Emote = 4
LobbyGameStart = 5
LeftConversation = 6
Entered = 7
WasKicked = 8
WasBanned = 9
Disconnected = 10
HistoricalChat = 11
Reserved1 = 12
Reserved2 = 13
LinkBlocked = 14
Implementations§
Source§impl EChatEntryType
impl EChatEntryType
pub fn from_i32(val: i32) -> Option<EChatEntryType>
Trait Implementations§
Source§impl Clone for EChatEntryType
impl Clone for EChatEntryType
Source§fn clone(&self) -> EChatEntryType
fn clone(&self) -> EChatEntryType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EChatEntryType
impl Debug for EChatEntryType
Source§impl Hash for EChatEntryType
impl Hash for EChatEntryType
Source§impl PartialEq for EChatEntryType
impl PartialEq for EChatEntryType
Source§fn eq(&self, other: &EChatEntryType) -> bool
fn eq(&self, other: &EChatEntryType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for EChatEntryType
impl Eq for EChatEntryType
impl StructuralPartialEq for EChatEntryType
Auto Trait Implementations§
impl Freeze for EChatEntryType
impl RefUnwindSafe for EChatEntryType
impl Send for EChatEntryType
impl Sync for EChatEntryType
impl Unpin for EChatEntryType
impl UnsafeUnpin for EChatEntryType
impl UnwindSafe for EChatEntryType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more