actix-http 3.0.0-beta.8

HTTP primitives for the Actix ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Originally taken from `hyper::header::shared`.

mod charset;
mod content_encoding;
mod extended;
mod httpdate;
mod quality_item;

pub use self::charset::Charset;
pub use self::content_encoding::ContentEncoding;
pub use self::extended::{parse_extended_value, ExtendedValue};
pub use self::httpdate::HttpDate;
pub use self::quality_item::{q, qitem, Quality, QualityItem};
pub use language_tags::LanguageTag;