pub enum McpServerStatusChangedStatus {
Connected,
Failed,
NeedsAuth,
Pending,
Disabled,
NotConfigured,
Unknown,
}Expand description
New connection status: connected, failed, needs-auth, pending, disabled, or not_configured
Variants§
Connected
Failed
NeedsAuth
Pending
Disabled
NotConfigured
Unknown
Unknown variant for forward compatibility.
Trait Implementations§
Source§impl Clone for McpServerStatusChangedStatus
impl Clone for McpServerStatusChangedStatus
Source§fn clone(&self) -> McpServerStatusChangedStatus
fn clone(&self) -> McpServerStatusChangedStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 McpServerStatusChangedStatus
impl Debug for McpServerStatusChangedStatus
Source§impl<'de> Deserialize<'de> for McpServerStatusChangedStatus
impl<'de> Deserialize<'de> for McpServerStatusChangedStatus
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 McpServerStatusChangedStatus
impl PartialEq for McpServerStatusChangedStatus
Source§fn eq(&self, other: &McpServerStatusChangedStatus) -> bool
fn eq(&self, other: &McpServerStatusChangedStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for McpServerStatusChangedStatus
impl StructuralPartialEq for McpServerStatusChangedStatus
Auto Trait Implementations§
impl Freeze for McpServerStatusChangedStatus
impl RefUnwindSafe for McpServerStatusChangedStatus
impl Send for McpServerStatusChangedStatus
impl Sync for McpServerStatusChangedStatus
impl Unpin for McpServerStatusChangedStatus
impl UnsafeUnpin for McpServerStatusChangedStatus
impl UnwindSafe for McpServerStatusChangedStatus
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