1 个不稳定版本
0.0.0 | 2021年1月29日 |
---|
#25 in #internals
170 每月下载次数
在 12 个crate中使用 (2 个直接使用)
44KB
1K 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!
}
}
}
lib.rs
:
mime
crate 的内部类型。
这里没有可看的内容。请继续浏览。