Enum simplelog::LogLevel
[−]
[src]
#[repr(usize)]pub enum LogLevel { Error, Warn, Info, Debug, Trace, }
An enum representing the available verbosity levels of the logging framework.
Typical usage includes: checking if a certain LogLevel is enabled with
log_enabled!, specifying the LogLevel of
log!, and comparing a LogLevel directly to a
LogLevelFilter.
Variants
ErrorThe "error" level.
Designates very serious errors.
WarnThe "warn" level.
Designates hazardous situations.
InfoThe "info" level.
Designates useful information.
DebugThe "debug" level.
Designates lower priority information.
TraceThe "trace" level.
Designates very low priority, often extremely verbose, information.
Methods
impl LogLevel[src]
fn max() -> LogLevel
Returns the most verbose logging level.
fn to_log_level_filter(&self) -> LogLevelFilter
Converts the LogLevel to the equivalent LogLevelFilter.
Trait Implementations
impl Display for LogLevel[src]
fn fmt(&self, fmt: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter. Read more
impl PartialOrd<LogLevel> for LogLevel[src]
fn partial_cmp(&self, other: &LogLevel) -> Option<Ordering>
impl PartialOrd<LogLevelFilter> for LogLevel[src]
fn partial_cmp(&self, other: &LogLevelFilter) -> Option<Ordering>
impl Copy for LogLevel[src]
impl FromStr for LogLevel[src]
impl Ord for LogLevel[src]
impl Eq for LogLevel[src]
impl Hash for LogLevel[src]
impl PartialEq<LogLevel> for LogLevel[src]
fn eq(&self, other: &LogLevel) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0
This method tests for !=.
impl PartialEq<LogLevelFilter> for LogLevel[src]
fn eq(&self, other: &LogLevelFilter) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0
This method tests for !=.
impl Debug for LogLevel[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter.
impl Clone for LogLevel[src]
fn clone(&self) -> LogLevel
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more