feat(headers): add IfMatch header

Add support for the If-Match http header.
This commit is contained in:
Hugo Duncan
2015-02-07 14:46:30 -05:00
committed by Sean McArthur
parent f554c09e12
commit 5df06d4465
2 changed files with 70 additions and 0 deletions

View File

@@ -20,6 +20,7 @@ pub use self::date::Date;
pub use self::etag::Etag;
pub use self::expires::Expires;
pub use self::host::Host;
pub use self::if_match::IfMatch;
pub use self::if_modified_since::IfModifiedSince;
pub use self::if_none_match::IfNoneMatch;
pub use self::if_unmodified_since::IfUnmodifiedSince;
@@ -157,6 +158,7 @@ mod date;
mod etag;
mod expires;
mod host;
mod if_match;
mod last_modified;
mod if_modified_since;
mod if_none_match;