pub enum LogLevel {
Error,
Warn,
Info,
Debug,
Trace,
}Expand description
Log levels supported by rstructor.
These map to the tracing level hierarchy: ERROR, WARN, INFO, DEBUG, TRACE.
Variants§
Error
Error logs only - highest priority messages for critical failures
Warn
Warning and error logs - indicate potential issues
Info
Info, warning, and error logs - normal operational messages
Debug
Debug, info, warning, and error logs - detailed information for troubleshooting
Trace
Trace, debug, info, warning, and error logs - highly detailed diagnostics
Trait Implementations§
impl Copy for LogLevel
impl Eq for LogLevel
impl StructuralPartialEq for LogLevel
Auto Trait Implementations§
impl Freeze for LogLevel
impl RefUnwindSafe for LogLevel
impl Send for LogLevel
impl Sync for LogLevel
impl Unpin for LogLevel
impl UnwindSafe for LogLevel
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.