pub type HttpServeResult = Result<(), BoxError>;
Result type of HttpServer::serve.
HttpServer::serve
enum HttpServeResult { Ok(()), Err(Box<dyn Error + Send + Sync>), }
Contains the success value
Contains the error value