Skip to main content

ToolFuture

Type Alias ToolFuture 

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

A boxed, sendable future returned by a tool.

Aliased Typeยง

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