salvo_core 0.96.0

Salvo is a powerful web framework that can make your work easier.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! HTTP Errors.

mod parse_error;
cfg_feature! {
    #![feature = "rfc9457"]
    mod problem;
    pub use problem::{NoExtensions, PROBLEM_JSON, PlainProblem, Problem};
}
mod status_error;
pub use parse_error::{ParseError, ParseResult};
pub use status_error::{StatusError, StatusResult};