pub trait WasiHttpViewExt {
    // Required method
    fn handle_async<'life0, 'async_trait>(
        &'life0 mut self,
        request_id: OutgoingRequest,
        options: Option<RequestOptions>
    ) -> Pin<Box<dyn Future<Output = Result<FutureIncomingResponse, Error>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

source

fn handle_async<'life0, 'async_trait>( &'life0 mut self, request_id: OutgoingRequest, options: Option<RequestOptions> ) -> Pin<Box<dyn Future<Output = Result<FutureIncomingResponse, Error>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

Implementors§