pub type RequestHandler = Box<dyn Fn(Request) -> Pin<Box<dyn Future<Output = Response> + Send>> + Send + Sync>;
Request handler function type
pub struct RequestHandler(/* private fields */);