pub struct ToolMetadata {
pub name: String,
pub title: Option<String>,
pub description: Option<String>,
pub input_schema: Option<Value>,
pub output_schema: Option<Value>,
pub server_id: Option<String>,
pub namespace: Option<String>,
pub annotations: HashMap<String, Value>,
}Expand description
MCP tool metadata.
Fields§
§name: StringTool name.
title: Option<String>Human-readable title.
description: Option<String>Tool description.
input_schema: Option<Value>Input JSON schema.
output_schema: Option<Value>Output JSON schema.
server_id: Option<String>Source server ID.
namespace: Option<String>Tool namespace.
annotations: HashMap<String, Value>Tool annotations.
Trait Implementations§
Source§impl Clone for ToolMetadata
impl Clone for ToolMetadata
Source§fn clone(&self) -> ToolMetadata
fn clone(&self) -> ToolMetadata
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 ToolMetadata
impl Debug for ToolMetadata
Source§impl Default for ToolMetadata
impl Default for ToolMetadata
Source§fn default() -> ToolMetadata
fn default() -> ToolMetadata
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ToolMetadata
impl<'de> Deserialize<'de> for ToolMetadata
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 ToolMetadata
impl RefUnwindSafe for ToolMetadata
impl Send for ToolMetadata
impl Sync for ToolMetadata
impl Unpin for ToolMetadata
impl UnsafeUnpin for ToolMetadata
impl UnwindSafe for ToolMetadata
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