1 个不稳定版本

0.0.0 2021年1月29日

#25 in #internals

Download history 57/week @ 2024-03-11 68/week @ 2024-03-18 60/week @ 2024-03-25 86/week @ 2024-04-01 70/week @ 2024-04-08 50/week @ 2024-04-15 34/week @ 2024-04-22 54/week @ 2024-04-29 42/week @ 2024-05-06 56/week @ 2024-05-13 63/week @ 2024-05-20 33/week @ 2024-05-27 38/week @ 2024-06-03 43/week @ 2024-06-10 45/week @ 2024-06-17 43/week @ 2024-06-24

170 每月下载次数
12 个crate中使用 (2 个直接使用)

MIT 许可协议

44KB
1K 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!
        }
    }
}

lib.rs:

mime crate 的内部类型。

这里没有可看的内容。请继续浏览。

无运行时依赖