feat(headers): Add Accept-Ranges header field

This commit is contained in:
Pyfisch
2015-05-02 21:05:25 +02:00
parent 1426a4ce34
commit 2dbe3f9b9a
2 changed files with 73 additions and 0 deletions

View File

@@ -16,6 +16,7 @@ pub use self::access_control_request_method::AccessControlRequestMethod;
pub use self::accept_charset::AcceptCharset;
pub use self::accept_encoding::AcceptEncoding;
pub use self::accept_language::AcceptLanguage;
pub use self::accept_ranges::AcceptRanges;
pub use self::allow::Allow;
pub use self::authorization::{Authorization, Scheme, Basic};
pub use self::cache_control::{CacheControl, CacheDirective};
@@ -302,6 +303,7 @@ mod access_control_request_method;
mod accept_charset;
mod accept_encoding;
mod accept_language;
mod accept_ranges;
mod allow;
mod authorization;
mod cache_control;