pub struct McpAddRequest {
pub name: String,
pub command: String,
pub args: Vec<String>,
pub env: Option<HashMap<String, String>>,
}Expand description
Request to add an MCP server.
Fields§
§name: StringServer name.
command: StringServer command.
args: Vec<String>Server arguments.
env: Option<HashMap<String, String>>Environment variables.
Trait Implementations§
Source§impl Clone for McpAddRequest
impl Clone for McpAddRequest
Source§fn clone(&self) -> McpAddRequest
fn clone(&self) -> McpAddRequest
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 McpAddRequest
impl Debug for McpAddRequest
Source§impl<'de> Deserialize<'de> for McpAddRequest
impl<'de> Deserialize<'de> for McpAddRequest
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 McpAddRequest
impl RefUnwindSafe for McpAddRequest
impl Send for McpAddRequest
impl Sync for McpAddRequest
impl Unpin for McpAddRequest
impl UnwindSafe for McpAddRequest
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