1
2
3
4
5
6
7
8
9
/// Representation of MimeTypes.
#[derive(Debug, PartialEq, Eq)]
pub enum MimeType {
    /// A special "MimeType" that represents a redirection
    Redirect,
    LinkTarget,
    DeletedEntry,
    Type(String),
}