Enum tracing_core::metadata::LevelInner
source · #[repr(usize)]
enum LevelInner {
Trace,
Debug,
Info,
Warn,
Error,
}
Variants§
Trace
The “trace” level.
Designates very low priority, often extremely verbose, information.
Debug
The “debug” level.
Designates lower priority information.
Info
The “info” level.
Designates useful information.
Warn
The “warn” level.
Designates hazardous situations.
Error
The “error” level.
Designates very serious errors.
Trait Implementations§
source§impl Clone for LevelInner
impl Clone for LevelInner
source§fn clone(&self) -> LevelInner
fn clone(&self) -> LevelInner
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 LevelInner
impl Debug for LevelInner
source§impl Hash for LevelInner
impl Hash for LevelInner
source§impl PartialEq<LevelInner> for LevelInner
impl PartialEq<LevelInner> for LevelInner
source§fn eq(&self, other: &LevelInner) -> bool
fn eq(&self, other: &LevelInner) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.