pub trait ToolCallLauncher<B>: Send {
// Required method
fn launch_stage<'a>(
&'a mut self,
text: String,
boxes: Vec<B>,
) -> Pin<Box<dyn Future<Output = Result<(), String>> + Send + 'a>>;
}Expand description
Accepts one assistant-text and tool-call wave for durable launch.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".