pub enum McpServersLoadedServerStatus {
Connected,
Failed,
NeedsAuth,
Pending,
Disabled,
NotConfigured,
Unknown,
}Expand description
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 McpServersLoadedServerStatus
impl Clone for McpServersLoadedServerStatus
Source§fn clone(&self) -> McpServersLoadedServerStatus
fn clone(&self) -> McpServersLoadedServerStatus
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 McpServersLoadedServerStatus
impl Debug for McpServersLoadedServerStatus
Source§impl<'de> Deserialize<'de> for McpServersLoadedServerStatus
impl<'de> Deserialize<'de> for McpServersLoadedServerStatus
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 McpServersLoadedServerStatus
impl PartialEq for McpServersLoadedServerStatus
Source§fn eq(&self, other: &McpServersLoadedServerStatus) -> bool
fn eq(&self, other: &McpServersLoadedServerStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for McpServersLoadedServerStatus
impl StructuralPartialEq for McpServersLoadedServerStatus
Auto Trait Implementations§
impl Freeze for McpServersLoadedServerStatus
impl RefUnwindSafe for McpServersLoadedServerStatus
impl Send for McpServersLoadedServerStatus
impl Sync for McpServersLoadedServerStatus
impl Unpin for McpServersLoadedServerStatus
impl UnsafeUnpin for McpServersLoadedServerStatus
impl UnwindSafe for McpServersLoadedServerStatus
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