pub enum MCPLogLevel {
Debug,
Info,
Notice,
Warning,
Error,
Critical,
Alert,
Emergency,
}
Expand description
MCP log levels
Variants§
Debug
Debug level
Info
Info level
Notice
Notice level
Warning
Warning level
Error
Error level
Critical
Critical level
Alert
Alert level
Emergency
Emergency level
Trait Implementations§
Source§impl Clone for MCPLogLevel
impl Clone for MCPLogLevel
Source§fn clone(&self) -> MCPLogLevel
fn clone(&self) -> MCPLogLevel
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MCPLogLevel
impl Debug for MCPLogLevel
Source§impl<'de> Deserialize<'de> for MCPLogLevel
impl<'de> Deserialize<'de> for MCPLogLevel
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for MCPLogLevel
impl PartialEq for MCPLogLevel
Source§impl Serialize for MCPLogLevel
impl Serialize for MCPLogLevel
impl StructuralPartialEq for MCPLogLevel
Auto Trait Implementations§
impl Freeze for MCPLogLevel
impl RefUnwindSafe for MCPLogLevel
impl Send for MCPLogLevel
impl Sync for MCPLogLevel
impl Unpin for MCPLogLevel
impl UnwindSafe for MCPLogLevel
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