Trait dwh::DoRequest

source ·
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;
}

Required Methods§

source

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,

Implementations on Foreign Types§

source§

impl DoRequest for RequestBuilder

source§

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,

Implementors§