1个不稳定版本
0.0.0 | 2021年1月29日 |
---|
#75 in #mime
在 mime_4 中使用
48KB
1.5K SLoC
mime
支持Rust中将MIME(HTTP媒体类型)作为强类型。
用法
extern crate mime;
fn main() {
// common types are constants
let text = mime::TEXT_PLAIN;
// deconstruct Mimes to match on them
match (text.type_(), text.subtype()) {
(mime::TEXT, mime::PLAIN) => {
// plain text!
},
(mime::TEXT, _) => {
// structured text!
},
_ => {
// not text!
}
}
}
依赖
~2MB
~46K SLoC