pub enum McpServerState {
Starting(McpServerStartingState),
Ready(McpServerReadyState),
AuthRequired(Box<McpServerAuthRequiredState>),
Error(McpServerErrorState),
Stopped(McpServerStoppedState),
Unknown(Value),
}Expand description
Discriminated lifecycle status of an MCP server customization.
Variants§
Starting(McpServerStartingState)
Ready(McpServerReadyState)
AuthRequired(Box<McpServerAuthRequiredState>)
Error(McpServerErrorState)
Stopped(McpServerStoppedState)
Unknown(Value)
Unknown or future variant — preserved as raw JSON for round-trip fidelity. Reducers treat this as a no-op.
Trait Implementations§
Source§impl Clone for McpServerState
impl Clone for McpServerState
Source§fn clone(&self) -> McpServerState
fn clone(&self) -> McpServerState
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 McpServerState
impl Debug for McpServerState
Source§impl<'de> Deserialize<'de> for McpServerState
impl<'de> Deserialize<'de> for McpServerState
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 McpServerState
impl PartialEq for McpServerState
Source§fn eq(&self, other: &McpServerState) -> bool
fn eq(&self, other: &McpServerState) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for McpServerState
impl Serialize for McpServerState
impl StructuralPartialEq for McpServerState
Auto Trait Implementations§
impl Freeze for McpServerState
impl RefUnwindSafe for McpServerState
impl Send for McpServerState
impl Sync for McpServerState
impl Unpin for McpServerState
impl UnsafeUnpin for McpServerState
impl UnwindSafe for McpServerState
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