pub trait Subrequest {
// Required method
fn process_subrequest<'async_trait>(
self: Arc<Self>,
session: Box<HttpSession>,
sub_req_ctx: Box<SubrequestCtx>,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
where Self: 'async_trait;
}