pub trait ToolExecutor: Send + Sync {
// Required methods
fn schemas(&self) -> Vec<ToolSchema>;
fn execute<'life0, 'life1, 'async_trait>(
&'life0 self,
name: &'life1 str,
args: Value,
) -> Pin<Box<dyn Future<Output = ToolResult> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
// Provided method
fn is_non_blocking(&self, _name: &str) -> bool { ... }
}