pub struct McpRuntimeSummary {
pub name: String,
pub description: Option<String>,
pub tags: Vec<String>,
pub tools: Option<McpToolConfig>,
pub transport: McpRuntimeSummaryTransport,
}Expand description
Summarized runtime metadata for listing available MCP servers.
Fields§
§name: String§description: Option<String>§tools: Option<McpToolConfig>§transport: McpRuntimeSummaryTransportTrait Implementations§
Source§impl Clone for McpRuntimeSummary
impl Clone for McpRuntimeSummary
Source§fn clone(&self) -> McpRuntimeSummary
fn clone(&self) -> McpRuntimeSummary
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 McpRuntimeSummary
impl Debug for McpRuntimeSummary
Source§impl From<&McpServerLauncher> for McpRuntimeSummary
impl From<&McpServerLauncher> for McpRuntimeSummary
Source§fn from(launcher: &McpServerLauncher) -> Self
fn from(launcher: &McpServerLauncher) -> Self
Converts to this type from the input type.
Source§impl PartialEq for McpRuntimeSummary
impl PartialEq for McpRuntimeSummary
Source§fn eq(&self, other: &McpRuntimeSummary) -> bool
fn eq(&self, other: &McpRuntimeSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for McpRuntimeSummary
impl StructuralPartialEq for McpRuntimeSummary
Auto Trait Implementations§
impl Freeze for McpRuntimeSummary
impl RefUnwindSafe for McpRuntimeSummary
impl Send for McpRuntimeSummary
impl Sync for McpRuntimeSummary
impl Unpin for McpRuntimeSummary
impl UnsafeUnpin for McpRuntimeSummary
impl UnwindSafe for McpRuntimeSummary
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.