pub type BoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + Send + 'a>>;
Type alias matching the pattern used throughout aimdb-core (no async_trait).
pub struct BoxFuture<'a, T> { /* private fields */ }