feat(headers): Add Content-Disposition header

fixes #561
This commit is contained in:
Mike Dilger
2015-11-24 08:51:06 +13:00
parent b4a9227204
commit 7623ecc264
2 changed files with 330 additions and 0 deletions

View File

@@ -23,6 +23,7 @@ pub use self::allow::Allow;
pub use self::authorization::{Authorization, Scheme, Basic, Bearer};
pub use self::cache_control::{CacheControl, CacheDirective};
pub use self::connection::{Connection, ConnectionOption};
pub use self::content_disposition::{ContentDisposition, DispositionType, DispositionParam};
pub use self::content_length::ContentLength;
pub use self::content_encoding::ContentEncoding;
pub use self::content_language::ContentLanguage;
@@ -371,6 +372,7 @@ mod authorization;
mod cache_control;
mod cookie;
mod connection;
mod content_disposition;
mod content_encoding;
mod content_language;
mod content_length;