iri_s 0.2.9

RDF data shapes implementation in Rust
Documentation
1
2
3
4
5
6
7
/// Types that implement this trait can inform about their MIME-TYPE
/// More information about MIME types:
/// https://www.iana.org/assignments/media-types/media-types.xhtml
// TODO - move to another crate?
pub trait MimeType {
    fn mime_type(&self) -> &'static str;
}