1个不稳定版本

0.0.0 2021年1月29日

#75 in #mime


mime_4 中使用

MIT 许可证

48KB
1.5K SLoC

mime

Build Status crates.io docs.rs

支持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