EDIT: I actually need a hyper::Error, not a hyper::http::Error
Context: I am using hyper-staticfile and writing a custom hyper Service.
The hyper-staticfile returns for me a Result<Response<Body>, std::io::Error>
, but what I need to produce is a Result<Response<Body>, hyper::Error>
Question: Is there an idiomatic way to do std::io::Error -> hyper::Error ?