1 个稳定版本
1.0.0 | 2023年10月12日 |
---|
#15 在 #http-status
21KB
193 行
rhttp_status_code
此库提供 HTTP 状态码的定义(以数字、u16
形式),这些状态码在 rfc9110
中定义。
使用方法
首先,在您的 Cargo.toml 中添加以下内容
[dependencies]
rhttp_status_code = { version = "1" }
然后,您可以在代码中使用它,例如
fn main() {
// Note: All constants are u16
let _a: u16 = rhttp_status_code::OK;
let _b: u16 = rhttp_status_code::Forbidden;
}
参考
RFC9110
,第 15 节:[链接](https://www.rfc-editor.org/rfc/rfc9110#name-status-codes)
lib.rs
:
HTTP 状态码
rhttp_status_code
提供了在 rfc9110 中定义的 HTTP 状态码的常量。
使用方法
首先,在您的 Cargo.toml 中添加以下内容
[dependencies]
rhttp_status_code = { version = "1" }
然后,您可以在代码中使用它,例如
// Note: All constants are u16
let _ = rhttp_status_code::OK;
let _ = rhttp_status_code::Forbidden;