simbld-http 1.0.0

A comprehensive HTTP response library for Rust.
Documentation
1
2
3
4
5
6
use crate::helpers::http_code_helper::HttpCode;

/// Trait to convert various types into an HttpCode.
pub trait IntoHttpCode {
    fn into_http_code(self) -> HttpCode;
}