#http #methods #http-request

uhttp_method

从 hyper.rs 中拆分出来的 HTTP 方法

1 个不稳定版本

使用旧的 Rust 2015

0.10.0 2017年2月20日

#5#方法


uhttp_json_api 中使用

MIT 许可证

7KB
142

uhttp_method -- HTTP 请求方法解析器/格式化器

文档

此软件包提供 HTTP 请求方法解析器/格式化器,从 hyper.rs 中拆分出来。

示例

use uhttp_method::Method;

assert_eq!("GET".parse(), Ok(Method::Get));
assert!(Method::Get.idempotent());
assert_eq!(format!("{}", Method::Patch), "PATCH");

用法

软件包 可以通过 cargo 通过将其添加到 Cargo.toml 中的依赖项来使用

[dependencies]
uhttp_method = "0.10.0"

并在软件包根目录中导入它

extern crate uhttp_method;

lib.rs:

此软件包提供 HTTP 请求方法解析器/格式化器,从 hyper.rs 中拆分出来。

示例

use uhttp_method::Method;

assert_eq!("GET".parse(), Ok(Method::Get));
assert!(Method::Get.idempotent());
assert_eq!(format!("{}", Method::Patch), "PATCH");

没有运行时依赖