pub struct McpServerStartupStatusUpdatedNotification {
pub name: String,
pub status: String,
pub error: Option<String>,
}Expand description
mcpServer/startupStatus/updated notification.
Emitted by the app-server as each managed MCP server transitions through
its startup lifecycle (e.g. starting → ready or starting → failed).
Fields§
§name: StringMCP server identifier.
status: StringCurrent lifecycle status string (e.g. "starting", "ready",
"failed"). Kept as String so new status values don’t break parsing.
error: Option<String>Error message if startup failed.
Trait Implementations§
Source§impl Clone for McpServerStartupStatusUpdatedNotification
impl Clone for McpServerStartupStatusUpdatedNotification
Source§fn clone(&self) -> McpServerStartupStatusUpdatedNotification
fn clone(&self) -> McpServerStartupStatusUpdatedNotification
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<'de> Deserialize<'de> for McpServerStartupStatusUpdatedNotification
impl<'de> Deserialize<'de> for McpServerStartupStatusUpdatedNotification
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
Auto Trait Implementations§
impl Freeze for McpServerStartupStatusUpdatedNotification
impl RefUnwindSafe for McpServerStartupStatusUpdatedNotification
impl Send for McpServerStartupStatusUpdatedNotification
impl Sync for McpServerStartupStatusUpdatedNotification
impl Unpin for McpServerStartupStatusUpdatedNotification
impl UnsafeUnpin for McpServerStartupStatusUpdatedNotification
impl UnwindSafe for McpServerStartupStatusUpdatedNotification
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