pub struct ToolMatch {
pub name: String,
pub score: f32,
pub is_builtin: bool,
}Expand description
A scored search result.
Fields§
§name: StringTool name.
score: f32Relevance score (0.0–1.0).
is_builtin: boolWhether this is a builtin tool.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ToolMatch
impl RefUnwindSafe for ToolMatch
impl Send for ToolMatch
impl Sync for ToolMatch
impl Unpin for ToolMatch
impl UnsafeUnpin for ToolMatch
impl UnwindSafe for ToolMatch
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