1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-26 08:45:12 +01:00
actix-extras/src/header/shared/mod.rs
2018-03-06 00:43:25 -08:00

15 lines
344 B
Rust

//! Copied for `hyper::header::shared`;
pub use self::charset::Charset;
pub use self::encoding::Encoding;
pub use self::entity::EntityTag;
pub use self::httpdate::HttpDate;
pub use language_tags::LanguageTag;
pub use self::quality_item::{Quality, QualityItem, qitem, q};
mod charset;
mod entity;
mod encoding;
mod httpdate;
mod quality_item;