1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-05-19 16:58:14 +00:00
actix-web/actix-http/src/header/shared/mod.rs

20 lines
401 B
Rust
Raw Normal View History

2021-01-15 02:11:10 +00:00
//! Originally taken from `hyper::header::shared`.
2023-07-17 01:38:12 +00:00
pub use language_tags::LanguageTag;
2021-01-15 02:11:10 +00:00
mod charset;
mod content_encoding;
2021-01-15 02:11:10 +00:00
mod extended;
mod http_date;
mod quality;
2021-01-15 02:11:10 +00:00
mod quality_item;
2019-02-07 21:24:24 +00:00
2023-07-17 01:38:12 +00:00
pub use self::{
charset::Charset,
content_encoding::ContentEncoding,
extended::{parse_extended_value, ExtendedValue},
http_date::HttpDate,
quality::{q, Quality},
quality_item::QualityItem,
};