pub struct McpConfigList {
pub servers: HashMap<String, Value>,
}Expand description
User-configured MCP servers, keyed by server name.
Fields§
§servers: HashMap<String, Value>All MCP servers from user config, keyed by name
Trait Implementations§
Source§impl Clone for McpConfigList
impl Clone for McpConfigList
Source§fn clone(&self) -> McpConfigList
fn clone(&self) -> McpConfigList
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 McpConfigList
impl Debug for McpConfigList
Source§impl Default for McpConfigList
impl Default for McpConfigList
Source§fn default() -> McpConfigList
fn default() -> McpConfigList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for McpConfigList
impl<'de> Deserialize<'de> for McpConfigList
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 McpConfigList
impl RefUnwindSafe for McpConfigList
impl Send for McpConfigList
impl Sync for McpConfigList
impl Unpin for McpConfigList
impl UnsafeUnpin for McpConfigList
impl UnwindSafe for McpConfigList
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