pub type BoxFuture<'a, T> = Pin<Box<dyn Future<Output = SyncResult<T>> + Send + 'a>>;
Type alias for boxed async futures (reduces trait signature complexity).
pub struct BoxFuture<'a, T> { /* private fields */ }