pub trait DoRequest {
// Required method
fn send_and_validate<'life0, 'async_trait>(
self,
hooks: &'life0 Vec<Box<dyn ReqwestHooks + Send + Sync>>
) -> Pin<Box<dyn Future<Output = Result<Response>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}