Type Alias HttpServeResult
pub type HttpServeResult = Result<(), Box<dyn Error + Sync + Send>>;Expand description
Result type of HttpServer::serve.
Aliased Type§
pub enum HttpServeResult {
Ok(()),
Err(Box<dyn Error + Sync + Send>),
}