1 个不稳定版本
使用旧的 Rust 2015
0.10.0 | 2017年2月20日 |
---|
#5 在 #方法
在 uhttp_json_api 中使用
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");