pub trait Hook: Send + Sync {
// Provided methods
fn before_tool<'life0, 'life1, 'life2, 'life3, 'async_trait>(
&'life0 self,
_context: &'life1 ToolExecutionContext,
_tool: &'life2 str,
_arguments: &'life3 Value,
) -> Pin<Box<dyn Future<Output = HookDecision> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait { ... }
fn around_tool<'a>(
&'a self,
_context: &'a ToolExecutionContext,
_tool: &'a str,
_arguments: &'a Value,
next: ToolExecutionFuture<'a>,
) -> ToolExecutionFuture<'a> { ... }
fn after_tool<'life0, 'life1, 'life2, 'life3, 'life4, 'async_trait>(
&'life0 self,
_context: &'life1 ToolExecutionContext,
_tool: &'life2 str,
_arguments: &'life3 Value,
_result: &'life4 Value,
) -> Pin<Box<dyn Future<Output = Result<(), PluginError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,
'life4: 'async_trait { ... }
}Provided Methods§
fn before_tool<'life0, 'life1, 'life2, 'life3, 'async_trait>(
&'life0 self,
_context: &'life1 ToolExecutionContext,
_tool: &'life2 str,
_arguments: &'life3 Value,
) -> Pin<Box<dyn Future<Output = HookDecision> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,
fn around_tool<'a>( &'a self, _context: &'a ToolExecutionContext, _tool: &'a str, _arguments: &'a Value, next: ToolExecutionFuture<'a>, ) -> ToolExecutionFuture<'a>
fn after_tool<'life0, 'life1, 'life2, 'life3, 'life4, 'async_trait>(
&'life0 self,
_context: &'life1 ToolExecutionContext,
_tool: &'life2 str,
_arguments: &'life3 Value,
_result: &'life4 Value,
) -> Pin<Box<dyn Future<Output = Result<(), PluginError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,
'life4: 'async_trait,
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".