pub trait HandlerFuncParam<Param>: Send {
// Required method
fn call<'async_trait>(
self,
request: Request,
) -> Pin<Box<dyn Future<Output = Response> + Send + 'async_trait>>
where Self: 'async_trait;
}
pub trait HandlerFuncParam<Param>: Send {
// Required method
fn call<'async_trait>(
self,
request: Request,
) -> Pin<Box<dyn Future<Output = Response> + Send + 'async_trait>>
where Self: 'async_trait;
}