#[repr(u32)]pub enum TextMsgType {
MSGTYPE_NONE = 0,
MSGTYPE_USER = 1,
MSGTYPE_CHANNEL = 2,
MSGTYPE_BROADCAST = 3,
MSGTYPE_CUSTOM = 4,
}Variants§
Trait Implementations§
Source§impl Clone for TextMsgType
impl Clone for TextMsgType
Source§fn clone(&self) -> TextMsgType
fn clone(&self) -> TextMsgType
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 TextMsgType
impl Debug for TextMsgType
Source§impl Hash for TextMsgType
impl Hash for TextMsgType
Source§impl PartialEq for TextMsgType
impl PartialEq for TextMsgType
impl Copy for TextMsgType
impl Eq for TextMsgType
impl StructuralPartialEq for TextMsgType
Auto Trait Implementations§
impl Freeze for TextMsgType
impl RefUnwindSafe for TextMsgType
impl Send for TextMsgType
impl Sync for TextMsgType
impl Unpin for TextMsgType
impl UnwindSafe for TextMsgType
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