http-types 2.9.0

Common types for HTTP operations.
Documentation
//! 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 mod accept_encoding;
pub mod content_encoding;

mod content_length;
mod content_location;
mod encoding;
mod encoding_proposal;

#[doc(inline)]
pub use accept_encoding::AcceptEncoding;
#[doc(inline)]
pub use content_encoding::ContentEncoding;
pub use content_length::ContentLength;
pub use content_location::ContentLocation;
pub use encoding::Encoding;
pub use encoding_proposal::EncodingProposal;