pub type LocalBoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + 'a>>;
Type alias for a non-sync future
struct LocalBoxFuture<'a, T> {}