refactor(headers): factor out EntityTag from Etag

Allow use of EntityTag in other headers that use entity tags.

BREAKING CHANGE: for any consumers of the Etag header, since the entity
tag is now in a tuple.
This commit is contained in:
Hugo Duncan
2015-02-06 11:40:30 -05:00
parent c2784bca7a
commit 28fd5c81f5
4 changed files with 166 additions and 71 deletions

View File

@@ -1,5 +1,7 @@
pub use self::encoding::Encoding;
pub use self::entity::EntityTag;
pub use self::quality_item::{QualityItem, qitem};
mod encoding;
mod entity;
mod quality_item;