pub trait AndThenAsync<T, U, F>{
type Output;
// Required method
fn and_then_async<'async_trait>(
self,
map: F,
) -> Pin<Box<dyn Future<Output = Self::Output> + Send + 'async_trait>>
where Self: 'async_trait;
}