pub struct ToolFilter<E: ToolExecutor> { /* private fields */ }Expand description
Wraps a ToolExecutor and suppresses specified tool ids from both
tool_definitions and execute_tool_call.
Used to hide FileExecutor tools (e.g. read, glob) when
AcpFileExecutor provides equivalent IDE-proxied alternatives.
Implementations§
Source§impl<E: ToolExecutor> ToolFilter<E>
impl<E: ToolExecutor> ToolFilter<E>
Trait Implementations§
Source§impl<E: Debug + ToolExecutor> Debug for ToolFilter<E>
impl<E: Debug + ToolExecutor> Debug for ToolFilter<E>
Source§impl<E: ToolExecutor> ToolExecutor for ToolFilter<E>
impl<E: ToolExecutor> ToolExecutor for ToolFilter<E>
async fn execute(&self, response: &str) -> Result<Option<ToolOutput>, ToolError>
Source§async fn execute_confirmed(
&self,
response: &str,
) -> Result<Option<ToolOutput>, ToolError>
async fn execute_confirmed( &self, response: &str, ) -> Result<Option<ToolOutput>, ToolError>
Execute bypassing confirmation checks (called after user approves).
Default: delegates to
execute.Source§fn tool_definitions(&self) -> Vec<ToolDef>
fn tool_definitions(&self) -> Vec<ToolDef>
Return tool definitions this executor can handle.
Source§async fn execute_tool_call(
&self,
call: &ToolCall,
) -> Result<Option<ToolOutput>, ToolError>
async fn execute_tool_call( &self, call: &ToolCall, ) -> Result<Option<ToolOutput>, ToolError>
Execute a structured tool call. Returns
None if tool_id is not handled.Auto Trait Implementations§
impl<E> Freeze for ToolFilter<E>where
E: Freeze,
impl<E> RefUnwindSafe for ToolFilter<E>where
E: RefUnwindSafe,
impl<E> Send for ToolFilter<E>
impl<E> Sync for ToolFilter<E>
impl<E> Unpin for ToolFilter<E>where
E: Unpin,
impl<E> UnsafeUnpin for ToolFilter<E>where
E: UnsafeUnpin,
impl<E> UnwindSafe for ToolFilter<E>where
E: UnwindSafe,
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