pub type UnitTask<'a, T, E> = Pin<Box<dyn Future<Output = Result<T, E>> + Send + 'a>>;
pub struct UnitTask<'a, T, E> { /* private fields */ }