//! HTTP Content headers.
//!
//! These headers are used for "content negotiation": the client shares information
//! about which content it prefers, and the server responds by sharing which
//! content it's chosen to share. This enables clients to receive resources with the
//! best available compression, in the preferred language, and more.
pub use AcceptEncoding;
pub use ContentEncoding;
pub use ContentLength;
pub use ContentLocation;
pub use Encoding;
pub use EncodingProposal;