pub type BoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + Send + 'a>>;
Boxed future type used by Plugin::handle for dyn compatibility.
Plugin::handle
pub struct BoxFuture<'a, T> { /* private fields */ }