pub type BoxFuture<T> = Pin<Box<dyn Future<Output = T> + Send>>;
A boxed, owned future returned by a tool invocation.
#[repr(transparent)]pub struct BoxFuture<T> { /* private fields */ }