Expand description
§use-api-media-type
API media type primitives for RustUse.
Models media types, subtypes, suffixes, charsets, structured syntax suffixes, and common API media type labels with conservative parsing.
§Example
use use_api_media_type::{CommonApiMediaType, MediaType};
let value = MediaType::new("application/json").expect("valid API primitive");
assert_eq!(value.as_str(), "application/json");
assert_eq!(CommonApiMediaType::Json.to_string(), "json");§Scope
- Small validated types for API metadata.
- Stable display labels and conservative parsing helpers.
- Dependency-light primitives that can be reused by other RustUse crates.
§Non-goals
- No full MIME registry.
- No content negotiation engine.
- No payload parser.
§License
Licensed under either of the following, at your option:
- Apache License, Version 2.0
- MIT license
Structs§
- Charset
- Media
Subtype - Media
Type - Media
Type Suffix - Primitive
Metadata - Lightweight metadata tying this crate’s primary text and label together.
- Structured
Syntax Suffix
Enums§
- ApiPrimitive
Error - Error returned when API primitive text or labels are invalid.
- Common
ApiMedia Type - Common API media type labels.