Enum raylib_ffi::enums::TraceLogLevel
source · #[repr(C)]
pub enum TraceLogLevel {
LOGALL,
LOGTRACE,
LOGDEBUG,
LOGINFO,
LOGWARNING,
LOGERROR,
LOGFATAL,
LOGNONE,
}Expand description
Trace log level
Variants§
LOGALL
Display all logs
LOGTRACE
Trace logging, intended for internal use only
LOGDEBUG
Debug logging, used for internal debugging, it should be disabled on release builds
LOGINFO
Info logging, used for program execution info
LOGWARNING
Warning logging, used on recoverable failures
LOGERROR
Error logging, used on unrecoverable failures
LOGFATAL
Fatal logging, used to abort program: exit(EXIT_FAILURE)
LOGNONE
Disable logging
Trait Implementations§
source§impl Clone for TraceLogLevel
impl Clone for TraceLogLevel
source§fn clone(&self) -> TraceLogLevel
fn clone(&self) -> TraceLogLevel
Returns a copy 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 TraceLogLevel
impl Debug for TraceLogLevel
source§impl Hash for TraceLogLevel
impl Hash for TraceLogLevel
source§impl PartialEq<TraceLogLevel> for TraceLogLevel
impl PartialEq<TraceLogLevel> for TraceLogLevel
source§fn eq(&self, other: &TraceLogLevel) -> bool
fn eq(&self, other: &TraceLogLevel) -> bool
This method tests for
self and other values to be equal, and is used
by ==.