pub struct blaze_trace_lvl(/* private fields */);Expand description
The level at which to emit traces.
Implementations§
Source§impl blaze_trace_lvl
impl blaze_trace_lvl
Sourcepub const TRACE: blaze_trace_lvl
pub const TRACE: blaze_trace_lvl
Emit all trace events.
This is the most verbose level and includes all others.
Sourcepub const DEBUG: blaze_trace_lvl
pub const DEBUG: blaze_trace_lvl
Emit debug traces and above.
This level excludes traces emitted with “TRACE” verbosity.
Sourcepub const INFO: blaze_trace_lvl
pub const INFO: blaze_trace_lvl
Emit info level traces and above.
This level excludes traces emitted with “TRACE” or “DEBUG” verbosity.
Sourcepub const WARN: blaze_trace_lvl
pub const WARN: blaze_trace_lvl
Only emit warnings.
Trait Implementations§
Source§impl Clone for blaze_trace_lvl
impl Clone for blaze_trace_lvl
Source§fn clone(&self) -> blaze_trace_lvl
fn clone(&self) -> blaze_trace_lvl
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 blaze_trace_lvl
impl Debug for blaze_trace_lvl
Source§impl From<blaze_trace_lvl> for LevelFilter
impl From<blaze_trace_lvl> for LevelFilter
Source§fn from(other: blaze_trace_lvl) -> Self
fn from(other: blaze_trace_lvl) -> Self
Converts to this type from the input type.
Source§impl PartialEq for blaze_trace_lvl
impl PartialEq for blaze_trace_lvl
impl Copy for blaze_trace_lvl
impl StructuralPartialEq for blaze_trace_lvl
Auto Trait Implementations§
impl Freeze for blaze_trace_lvl
impl RefUnwindSafe for blaze_trace_lvl
impl Send for blaze_trace_lvl
impl Sync for blaze_trace_lvl
impl Unpin for blaze_trace_lvl
impl UnwindSafe for blaze_trace_lvl
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