pub type BoxSyncFuture<'a, T> = Pin<Box<dyn Future<Output = T> + Send + Sync + 'a>>;
Pinned future that is Send and Sync
struct BoxSyncFuture<'a, T> {}