pub trait Executor<T> {
// Required method
fn execute<'async_trait>(
self,
) -> Pin<Box<dyn Future<Output = ApiResult<T>> + Send + 'async_trait>>
where Self: 'async_trait;
}
pub trait Executor<T> {
// Required method
fn execute<'async_trait>(
self,
) -> Pin<Box<dyn Future<Output = ApiResult<T>> + Send + 'async_trait>>
where Self: 'async_trait;
}