Enum tracing_core::metadata::LevelInner
source · #[repr(usize)]enum LevelInner {
Trace = 0,
Debug = 1,
Info = 2,
Warn = 3,
Error = 4,
}
Variants§
Trace = 0
The “trace” level.
Designates very low priority, often extremely verbose, information.
Debug = 1
The “debug” level.
Designates lower priority information.
Info = 2
The “info” level.
Designates useful information.
Warn = 3
The “warn” level.
Designates hazardous situations.
Error = 4
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 for LevelInner
impl PartialEq 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 ==
.impl Copy for LevelInner
impl Eq for LevelInner
impl StructuralPartialEq for LevelInner
Auto Trait Implementations§
impl Freeze for LevelInner
impl RefUnwindSafe for LevelInner
impl Send for LevelInner
impl Sync for LevelInner
impl Unpin for LevelInner
impl UnwindSafe for LevelInner
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