pub type Result<T> = Result<T, ServerError>;Expand description
Result type for the http_srv crate
It serves as a shortcut for an std::result::Result<T,ServerError>
Aliased Type§
enum Result<T> {
Ok(T),
Err(ServerError),
}pub type Result<T> = Result<T, ServerError>;Result type for the http_srv crate
It serves as a shortcut for an std::result::Result<T,ServerError>
enum Result<T> {
Ok(T),
Err(ServerError),
}