4 个版本
使用旧的 Rust 2015
0.2.1 | 2018年5月25日 |
---|---|
0.2.0 | 2017年12月25日 |
0.1.2 | 2017年12月25日 |
0.1.1 |
|
0.1.0 | 2017年10月16日 |
#23 in #log-error
5KB
94 行
如下检查 iron 的结果
let mut chain = Chain::new(handler);
chain.link_after(Inspect::new(|_req, res| match res {
Ok(r) => println!("ok: {:?}", r),
Err(e) => println!("err: {:?}", e),
}));
chain.link_after(Inspect::response(
|_req, res| println!("response: {:?}", res),
));
chain.link_after(Inspect::error(|_req, err| println!("error: {:?}", err)));
文档
依赖
~4.5MB
~114K SLoC