Skip to main content

iri_s/
mime_type.rs

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