pub type BoxedHandler = Box<dyn Fn(Request) -> Pin<Box<dyn Future<Output = Response> + Send>> + Send + Sync>;
Type alias for route handlers
pub struct BoxedHandler(/* private fields */);