mediatypes 0.2.0

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

/// `chemical/x-cdx`
///
/// Common file extensions: `.cdx`
pub const X_CDX: &str = "chemical/x-cdx";

/// `chemical/x-cif`
///
/// Common file extensions: `.cif`
pub const X_CIF: &str = "chemical/x-cif";

/// `chemical/x-cmdf`
///
/// Common file extensions: `.cmdf`
pub const X_CMDF: &str = "chemical/x-cmdf";

/// `chemical/x-cml`
///
/// Common file extensions: `.cml`
pub const X_CML: &str = "chemical/x-cml";

/// `chemical/x-csml`
///
/// Common file extensions: `.csml`
pub const X_CSML: &str = "chemical/x-csml";

/// `chemical/x-pdb`
pub const X_PDB: &str = "chemical/x-pdb";

/// `chemical/x-xyz`
///
/// Common file extensions: `.xyz`
pub const X_XYZ: &str = "chemical/x-xyz";