pub type BindingFuture<'a> = Pin<Box<dyn Future<Output = Result<Value, ToolCallError>> + Send + 'a>>;Expand description
Boxed future returned by Binding::call. Shape mirrors registry::CallFuture
so the two can be freely composed.
Aliased Typeยง
pub struct BindingFuture<'a> { /* private fields */ }