Type Alias http_srv::Result

source ·
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> {
    // some variants omitted
}

Variants§