Enum hyper::header::IfMatch
[-] [+]
[src]
pub enum IfMatch { Any, EntityTags(Vec<EntityTag>), }
The If-Match
header
The If-Match
request-header field is used with a method to make
it conditional. The client provides a list of entity tags, and
the request is only executed if one of those tags matches the
current entity.
See http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.24
Variants
Any | This corresponds to '*'. |
EntityTags | The header field names which will influence the response representation. |