#[repr(u32)]pub enum ServerLogEvent {
Show 26 variants
SERVERLOGEVENT_NONE = 0,
SERVERLOGEVENT_USER_CONNECTED = 1,
SERVERLOGEVENT_USER_DISCONNECTED = 2,
SERVERLOGEVENT_USER_LOGGEDIN = 4,
SERVERLOGEVENT_USER_LOGGEDOUT = 8,
SERVERLOGEVENT_USER_LOGINFAILED = 16,
SERVERLOGEVENT_USER_TIMEDOUT = 32,
SERVERLOGEVENT_USER_KICKED = 64,
SERVERLOGEVENT_USER_BANNED = 128,
SERVERLOGEVENT_USER_UNBANNED = 256,
SERVERLOGEVENT_USER_UPDATED = 512,
SERVERLOGEVENT_USER_JOINEDCHANNEL = 1_024,
SERVERLOGEVENT_USER_LEFTCHANNEL = 2_048,
SERVERLOGEVENT_USER_MOVED = 4_096,
SERVERLOGEVENT_USER_TEXTMESSAGE_PRIVATE = 8_192,
SERVERLOGEVENT_USER_TEXTMESSAGE_CUSTOM = 16_384,
SERVERLOGEVENT_USER_TEXTMESSAGE_CHANNEL = 32_768,
SERVERLOGEVENT_USER_TEXTMESSAGE_BROADCAST = 65_536,
SERVERLOGEVENT_CHANNEL_CREATED = 131_072,
SERVERLOGEVENT_CHANNEL_UPDATED = 262_144,
SERVERLOGEVENT_CHANNEL_REMOVED = 524_288,
SERVERLOGEVENT_FILE_UPLOADED = 1_048_576,
SERVERLOGEVENT_FILE_DOWNLOADED = 2_097_152,
SERVERLOGEVENT_FILE_DELETED = 4_194_304,
SERVERLOGEVENT_SERVER_UPDATED = 8_388_608,
SERVERLOGEVENT_SERVER_SAVECONFIG = 16_777_216,
}Variants§
SERVERLOGEVENT_NONE = 0
SERVERLOGEVENT_USER_CONNECTED = 1
SERVERLOGEVENT_USER_DISCONNECTED = 2
SERVERLOGEVENT_USER_LOGGEDIN = 4
SERVERLOGEVENT_USER_LOGGEDOUT = 8
SERVERLOGEVENT_USER_LOGINFAILED = 16
SERVERLOGEVENT_USER_TIMEDOUT = 32
SERVERLOGEVENT_USER_KICKED = 64
SERVERLOGEVENT_USER_BANNED = 128
SERVERLOGEVENT_USER_UNBANNED = 256
SERVERLOGEVENT_USER_UPDATED = 512
SERVERLOGEVENT_USER_JOINEDCHANNEL = 1_024
SERVERLOGEVENT_USER_LEFTCHANNEL = 2_048
SERVERLOGEVENT_USER_MOVED = 4_096
SERVERLOGEVENT_USER_TEXTMESSAGE_PRIVATE = 8_192
SERVERLOGEVENT_USER_TEXTMESSAGE_CUSTOM = 16_384
SERVERLOGEVENT_USER_TEXTMESSAGE_CHANNEL = 32_768
SERVERLOGEVENT_USER_TEXTMESSAGE_BROADCAST = 65_536
SERVERLOGEVENT_CHANNEL_CREATED = 131_072
SERVERLOGEVENT_CHANNEL_UPDATED = 262_144
SERVERLOGEVENT_CHANNEL_REMOVED = 524_288
SERVERLOGEVENT_FILE_UPLOADED = 1_048_576
SERVERLOGEVENT_FILE_DOWNLOADED = 2_097_152
SERVERLOGEVENT_FILE_DELETED = 4_194_304
SERVERLOGEVENT_SERVER_UPDATED = 8_388_608
SERVERLOGEVENT_SERVER_SAVECONFIG = 16_777_216
Trait Implementations§
Source§impl Clone for ServerLogEvent
impl Clone for ServerLogEvent
Source§fn clone(&self) -> ServerLogEvent
fn clone(&self) -> ServerLogEvent
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 ServerLogEvent
impl Debug for ServerLogEvent
Source§impl Hash for ServerLogEvent
impl Hash for ServerLogEvent
Source§impl PartialEq for ServerLogEvent
impl PartialEq for ServerLogEvent
impl Copy for ServerLogEvent
impl Eq for ServerLogEvent
impl StructuralPartialEq for ServerLogEvent
Auto Trait Implementations§
impl Freeze for ServerLogEvent
impl RefUnwindSafe for ServerLogEvent
impl Send for ServerLogEvent
impl Sync for ServerLogEvent
impl Unpin for ServerLogEvent
impl UnwindSafe for ServerLogEvent
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