Enum wasmtime_wasi_http::console::Level
source · pub enum Level {
Trace,
Debug,
Info,
Warn,
Error,
}
Expand description
A log level, describing a kind of message.
Variants§
Trace
Describes messages about the values of variables and the flow of control within a program.
Debug
Describes messages likely to be of interest to someone debugging a program.
Info
Describes messages likely to be of interest to someone monitoring a program.
Warn
Describes messages indicating hazardous situations.
Error
Describes messages indicating serious errors.
Trait Implementations§
source§impl PartialEq<Level> for Level
impl PartialEq<Level> for Level
impl ComponentType for Level
impl Copy for Level
impl Eq for Level
impl Lift for Level
impl Lower for Level
impl StructuralEq for Level
impl StructuralPartialEq for Level
Auto Trait Implementations§
impl RefUnwindSafe for Level
impl Send for Level
impl Sync for Level
impl Unpin for Level
impl UnwindSafe for Level
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<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.