pub trait Handle<Request> {
type Response;
// Required method
fn handle<'life0, 'async_trait>(
&'life0 mut self,
request: Request
) -> Pin<Box<dyn Future<Output = Result<Self::Response>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}