Struct hyper::header::common::etag::Etag
[-]
[+]
[src]
pub struct Etag { pub weak: bool, pub tag: String, }
The Etag
header.
An Etag consists of a string enclosed by two literal double quotes. Preceding the first double quote is an optional weakness indicator, which always looks like this: W/ See also: https://tools.ietf.org/html/rfc7232#section-2.3
Fields
weak | Weakness indicator for the tag |
tag | The opaque string in between the DQUOTEs |