pub struct McpServerStatus {
pub name: String,
pub connected: bool,
pub enabled: bool,
pub tool_count: usize,
pub error: Option<String>,
}Expand description
MCP server status
Fields§
§name: String§connected: bool§enabled: bool§tool_count: usize§error: Option<String>Trait Implementations§
Source§impl Clone for McpServerStatus
impl Clone for McpServerStatus
Source§fn clone(&self) -> McpServerStatus
fn clone(&self) -> McpServerStatus
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 moreAuto Trait Implementations§
impl Freeze for McpServerStatus
impl RefUnwindSafe for McpServerStatus
impl Send for McpServerStatus
impl Sync for McpServerStatus
impl Unpin for McpServerStatus
impl UnsafeUnpin for McpServerStatus
impl UnwindSafe for McpServerStatus
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