feat(headers): Content-Range header

This commit is contained in:
ealasu
2015-07-12 21:09:01 -04:00
committed by Sean McArthur
parent 884fb1bbd9
commit af062ac954
2 changed files with 191 additions and 0 deletions

View File

@@ -24,6 +24,7 @@ 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_range::{ContentRange, ContentRangeSpec};
pub use self::content_type::ContentType;
pub use self::cookie::Cookie;
pub use self::date::Date;
@@ -368,6 +369,7 @@ mod connection;
mod content_encoding;
mod content_language;
mod content_length;
mod content_range;
mod content_type;
mod date;
mod etag;