pub enum PluginMcpServerStatus {
Stopped,
Starting,
Running,
Error,
Disabled,
}Expand description
Status of a plugin MCP server
Variants§
Stopped
Server is not started
Starting
Server is starting up
Running
Server is running and connected
Error
Server encountered an error
Disabled
Server is disabled
Trait Implementations§
Source§impl Clone for PluginMcpServerStatus
impl Clone for PluginMcpServerStatus
Source§fn clone(&self) -> PluginMcpServerStatus
fn clone(&self) -> PluginMcpServerStatus
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 PluginMcpServerStatus
impl Debug for PluginMcpServerStatus
Source§impl<'de> Deserialize<'de> for PluginMcpServerStatus
impl<'de> Deserialize<'de> for PluginMcpServerStatus
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 PluginMcpServerStatus
impl PartialEq for PluginMcpServerStatus
Source§impl Serialize for PluginMcpServerStatus
impl Serialize for PluginMcpServerStatus
impl StructuralPartialEq for PluginMcpServerStatus
Auto Trait Implementations§
impl Freeze for PluginMcpServerStatus
impl RefUnwindSafe for PluginMcpServerStatus
impl Send for PluginMcpServerStatus
impl Sync for PluginMcpServerStatus
impl Unpin for PluginMcpServerStatus
impl UnsafeUnpin for PluginMcpServerStatus
impl UnwindSafe for PluginMcpServerStatus
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