pub enum ErrorLogLevel {
Critical,
Error,
Warning,
Info,
}Expand description
Log level for error reporting
Variants§
Critical
Critical errors that require immediate attention
Error
Errors that affect functionality but system can continue
Warning
Warnings about potential issues
Info
Informational error context
Trait Implementations§
Source§impl Clone for ErrorLogLevel
impl Clone for ErrorLogLevel
Source§fn clone(&self) -> ErrorLogLevel
fn clone(&self) -> ErrorLogLevel
Returns a duplicate 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 ErrorLogLevel
impl Debug for ErrorLogLevel
Source§impl From<&McpError> for ErrorLogLevel
impl From<&McpError> for ErrorLogLevel
Source§impl PartialEq for ErrorLogLevel
impl PartialEq for ErrorLogLevel
impl Copy for ErrorLogLevel
impl Eq for ErrorLogLevel
impl StructuralPartialEq for ErrorLogLevel
Auto Trait Implementations§
impl Freeze for ErrorLogLevel
impl RefUnwindSafe for ErrorLogLevel
impl Send for ErrorLogLevel
impl Sync for ErrorLogLevel
impl Unpin for ErrorLogLevel
impl UnwindSafe for ErrorLogLevel
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.