pub struct ToolSearchOutput {
pub matches: Vec<String>,
pub query: String,
pub total_deferred_tools: usize,
pub pending_mcp_servers: Option<Vec<String>>,
}Expand description
ToolSearchTool result output
Fields§
§matches: Vec<String>§query: String§total_deferred_tools: usize§pending_mcp_servers: Option<Vec<String>>Trait Implementations§
Source§impl Clone for ToolSearchOutput
impl Clone for ToolSearchOutput
Source§fn clone(&self) -> ToolSearchOutput
fn clone(&self) -> ToolSearchOutput
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 ToolSearchOutput
impl Debug for ToolSearchOutput
Source§impl<'de> Deserialize<'de> for ToolSearchOutput
impl<'de> Deserialize<'de> for ToolSearchOutput
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 ToolSearchOutput
impl RefUnwindSafe for ToolSearchOutput
impl Send for ToolSearchOutput
impl Sync for ToolSearchOutput
impl Unpin for ToolSearchOutput
impl UnsafeUnpin for ToolSearchOutput
impl UnwindSafe for ToolSearchOutput
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