mediatypes 0.2.0

A comprehensive collection of MIME types (media types) as string constants
Documentation
//! Message MIME types
//!
//! This module contains MIME types for message protocol data.

/// `message/bhttp`
pub const BHTTP: &str = "message/bhttp";

/// `message/cpim`
pub const CPIM: &str = "message/cpim";

/// `message/delivery-status`
pub const DELIVERY_STATUS: &str = "message/delivery-status";

/// `message/disposition-notification`
///
/// Common file extensions: `.disposition-notification`
pub const DISPOSITION_NOTIFICATION: &str = "message/disposition-notification";

/// `message/external-body`
pub const EXTERNAL_BODY: &str = "message/external-body";

/// `message/feedback-report`
pub const FEEDBACK_REPORT: &str = "message/feedback-report";

/// `message/global`
///
/// Common file extensions: `.u8msg`
pub const GLOBAL: &str = "message/global";

/// `message/global-delivery-status`
///
/// Common file extensions: `.u8dsn`
pub const GLOBAL_DELIVERY_STATUS: &str = "message/global-delivery-status";

/// `message/global-disposition-notification`
///
/// Common file extensions: `.u8mdn`
pub const GLOBAL_DISPOSITION_NOTIFICATION: &str = "message/global-disposition-notification";

/// `message/global-headers`
///
/// Common file extensions: `.u8hdr`
pub const GLOBAL_HEADERS: &str = "message/global-headers";

/// `message/http`
pub const HTTP: &str = "message/http";

/// `message/imdn+xml`
pub const IMDN_PLUS_XML: &str = "message/imdn+xml";

/// `message/mls`
pub const MLS: &str = "message/mls";

/// `message/news`
pub const NEWS: &str = "message/news";

/// `message/ohttp-req`
pub const OHTTP_REQ: &str = "message/ohttp-req";

/// `message/ohttp-res`
pub const OHTTP_RES: &str = "message/ohttp-res";

/// `message/partial`
pub const PARTIAL: &str = "message/partial";

/// `message/rfc822`
///
/// Common file extensions: `.eml`, `.mime`, `.mht`, `.mhtml`
pub const RFC822: &str = "message/rfc822";

/// `message/s-http`
pub const S_HTTP: &str = "message/s-http";

/// `message/sip`
pub const SIP: &str = "message/sip";

/// `message/sipfrag`
pub const SIPFRAG: &str = "message/sipfrag";

/// `message/tracking-status`
pub const TRACKING_STATUS: &str = "message/tracking-status";

/// `message/vnd.si.simp`
pub const VND_SI_SIMP: &str = "message/vnd.si.simp";

/// `message/vnd.wfa.wsc`
///
/// Common file extensions: `.wsc`
pub const VND_WFA_WSC: &str = "message/vnd.wfa.wsc";