7 个版本
使用旧的 Rust 2015
0.1.6 | 2017 年 8 月 18 日 |
---|---|
0.1.5 | 2017 年 8 月 17 日 |
在 #mini 中排名 36
每月下载量 227
被 2 个 crate 使用
11KB
166 行代码(不包括注释)
minihttpse 是一个 Rust 的 HTTP 响应解析器,简单易用
示例
use minihttpse::Response;
let s = "HTTP/1.1 200 OK\r\n\
Content-Length: 18\r\n\
Server: GWS/2.0\r\n\
Date: Sat, 11 Jan 2003 02:44:04 GMT\r\n\
Content-Type: text/html\r\n\
Cache-control: private\r\n\
Set-Cookie: PREF=ID=73d4aef52e57bae9:TM=1042253044:LM=1042253044:S=SMCc_HRPCQiqyX9j; expires=Sun, 17-Jan-2038 19:14:07 GMT; path=/; domain=.google.com\r\n\
Connection: keep-alive\r\n\
\r\n\
<html>hello</html>";
let res = Response::new(s.as_bytes().to_owned()).unwrap();
assert_eq!(res.reason(),"OK");
assert_eq!(res.status_code(),200);
assert_eq!(res.headers().get("Server"),Some(&"GWS/2.0".to_owned()));
println!("body {}",res.text());