feat(headers): Implement Content-Language header field

Closes #475
This commit is contained in:
Pyfisch
2015-04-27 21:11:21 +02:00
parent f7f0361626
commit 308880b455
6 changed files with 74 additions and 38 deletions

View File

@@ -22,6 +22,7 @@ pub use self::cache_control::{CacheControl, CacheDirective};
pub use self::connection::{Connection, ConnectionOption};
pub use self::content_length::ContentLength;
pub use self::content_encoding::ContentEncoding;
pub use self::content_language::ContentLanguage;
pub use self::content_type::ContentType;
pub use self::cookie::Cookie;
pub use self::date::Date;
@@ -303,6 +304,7 @@ mod cache_control;
mod cookie;
mod connection;
mod content_encoding;
mod content_language;
mod content_length;
mod content_type;
mod date;