Crates.io | mediatype |
lib.rs | mediatype |
version | 0.19.18 |
source | src |
created_at | 2022-02-18 13:03:28.346357 |
updated_at | 2024-01-30 05:17:44.507718 |
description | MIME Media-type parsing |
homepage | https://github.com/picoHz/mediatype |
repository | https://github.com/picoHz/mediatype |
max_upload_size | |
id | 534685 |
size | 326,114 |
MediaType::parse
runs a zero-copy parsing: A MediaType
borrows the input string instead of copying it.
If you need an owned type, use MediaTypeBuf
.
use mediatype::{names::*, values::*, MediaType};
let madia_type = "image/svg+xml; charset=UTF-8";
let svg = MediaType::parse(madia_type).unwrap();
assert_eq!(svg.ty, IMAGE);
assert_eq!(svg.subty, SVG);
assert_eq!(svg.suffix, Some(XML));
assert_eq!(svg.get_param(CHARSET), Some(UTF_8));
MediaType
is const-constructible. It can be defined as a constant.
Predefind names and values are defined in names
and values
modules.
use mediatype::{names::*, values::*, media_type, MediaType};
const TEXT_PLAIN: MediaType = MediaType::new(TEXT, PLAIN);
const IMAGE_SVG: MediaType =
MediaType::from_parts(TEXT, PLAIN, Some(XML), &[(CHARSET, UTF_8)]);
const TEXT_MARKDOWN: MediaType =
media_type!(TEXT/MARKDOWN; CHARSET=UTF_8);
Comparisons are case-insensitive except parameter values.
let text_plain_lower = MediaType::parse("text/plain; charset=UTF-8").unwrap();
let text_plain_upper = MediaType::parse("TEXT/PLAIN; CHARSET=UTF-8").unwrap();
assert_eq!(text_plain_lower, text_plain_upper);
assert_eq!(text_plain_lower.ty(), "Text");
assert_eq!(text_plain_upper.subty(), "Plain");
assert!(text_plain_lower !=
MediaType::parse("text/plain; charset=utf-8").unwrap());
The parser does not report duplicate parameter names as an error, but MediaType
recognizes only the last value.
let text_plain = MediaType::parse(
"text/plain; charset=US-ASCII; charset=UTF-8").unwrap();
assert_eq!(
text_plain.to_string(),
"text/plain; charset=US-ASCII; charset=UTF-8"
);
// Return the last charset value.
assert_eq!(text_plain.get_param(CHARSET), Some(UTF_8));
// Compare the last charset value.
assert_eq!(
text_plain,
MediaType::parse("text/plain; charset=UTF-8").unwrap()
);
MediaTypeBuf
is an owned version of MediaType
.
It is immutable but optimized for minimal stack and heap usage.
use mediatype::{names::*, values::*, MediaType, MediaTypeBuf};
let text_plain: MediaTypeBuf = "text/plain; charset=UTF-8".parse().unwrap();
assert_eq!(text_plain.get_param(CHARSET).unwrap(), UTF_8);
// Convert to MediaType
let mut text_markdown: MediaType = text_plain.to_ref();
text_markdown.subty = MARKDOWN;
assert_eq!(text_markdown.to_string(), "text/markdown; charset=UTF-8");
MediaTypeList
parses a comma-separated list of MediaType
s used in the HTTP Accept
header. (RFC 7231)
use mediatype::{MediaType, MediaTypeList};
let mut list = MediaTypeList::new(
"text/html, application/xhtml+xml, application/xml;q=0.9, */*;q=0.8",
);
assert_eq!(list.next(), Some(MediaType::parse("text/html")));
assert_eq!(list.next(), Some(MediaType::parse("application/xhtml+xml")));
assert_eq!(list.next(), Some(MediaType::parse("application/xml;q=0.9")));
assert_eq!(list.next(), Some(MediaType::parse("*/*;q=0.8")));
assert_eq!(list.next(), None);
To enable serialization and deserialization, specify serde
feature in Cargo.toml
.
mediatype = { version = "...", features = ["serde"] }
let json = r#"
[
"text/plain",
"image/svg+xml; charset=UTF-8"
]
"#;
let decoded: Vec<MediaType> = serde_json::from_str(json).unwrap();