Skip to main content

ToolFuture

Type Alias ToolFuture 

Source
pub type ToolFuture<'a, T> = Pin<Box<dyn Future<Output = Result<T, ToolError>> + Send + 'a>>;
Expand description

Boxed async result used by tool dispatcher and provider async paths.

Aliased Typeยง

pub struct ToolFuture<'a, T> { /* private fields */ }