Enum Severity
#[repr(u8)]pub enum Severity {
Trace = 16,
Debug = 32,
Info = 48,
Warn = 64,
Error = 80,
Fatal = 96,
}
Expand description
Severities a log message can have, often called the log’s “level”.
Variants§
Trace = 16
Trace severity level
Debug = 32
Debug severity level
Info = 48
Info severity level
Warn = 64
Warn severity level
Error = 80
Error severity level
Fatal = 96
Fatal severity level
Implementations§
Trait Implementations§
§impl Ord for Severity
impl Ord for Severity
§impl PartialOrd<Severity> for Severity
impl PartialOrd<Severity> for Severity
§impl PartialOrd for Severity
impl PartialOrd for Severity
§impl TryFrom<LevelFilter> for Severity
impl TryFrom<LevelFilter> for Severity
impl Copy for Severity
impl Eq for Severity
impl StructuralPartialEq for Severity
Auto Trait Implementations§
impl Freeze for Severity
impl RefUnwindSafe for Severity
impl Send for Severity
impl Sync for Severity
impl Unpin for Severity
impl UnwindSafe for Severity
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more