pub type BoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + Send + 'a>>;
Type alias for async boxed futures used in Axon execution.
pub struct BoxFuture<'a, T> { /* private fields */ }