pub struct McpClaudeAiProxyServerConfig {
pub type_: String,
pub url: String,
pub id: String,
}Expand description
Claude.ai proxy MCP server config shape used in MCP status responses.
Fields§
§type_: StringDiscriminator for Claude.ai proxy transport ("claudeai-proxy").
url: StringProxy endpoint URL.
id: StringProxy identifier.
Trait Implementations§
Source§impl Clone for McpClaudeAiProxyServerConfig
impl Clone for McpClaudeAiProxyServerConfig
Source§fn clone(&self) -> McpClaudeAiProxyServerConfig
fn clone(&self) -> McpClaudeAiProxyServerConfig
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 McpClaudeAiProxyServerConfig
impl Debug for McpClaudeAiProxyServerConfig
Source§impl<'de> Deserialize<'de> for McpClaudeAiProxyServerConfig
impl<'de> Deserialize<'de> for McpClaudeAiProxyServerConfig
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 McpClaudeAiProxyServerConfig
impl PartialEq for McpClaudeAiProxyServerConfig
Source§fn eq(&self, other: &McpClaudeAiProxyServerConfig) -> bool
fn eq(&self, other: &McpClaudeAiProxyServerConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for McpClaudeAiProxyServerConfig
impl StructuralPartialEq for McpClaudeAiProxyServerConfig
Auto Trait Implementations§
impl Freeze for McpClaudeAiProxyServerConfig
impl RefUnwindSafe for McpClaudeAiProxyServerConfig
impl Send for McpClaudeAiProxyServerConfig
impl Sync for McpClaudeAiProxyServerConfig
impl Unpin for McpClaudeAiProxyServerConfig
impl UnsafeUnpin for McpClaudeAiProxyServerConfig
impl UnwindSafe for McpClaudeAiProxyServerConfig
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