Enum hyper::header::IfNoneMatch [-] [+] [src]

pub enum IfNoneMatch {
    Any,
    EntityTags(Vec<EntityTag>),
}

The If-None-Match header defined by HTTP/1.1.

The "If-None-Match" header field makes the request method conditional on a recipient cache or origin server either not having any current representation of the target resource, when the field-value is "*", or having a selected representation with an entity-tag that does not match any of those listed in the field-value.

A recipient MUST use the weak comparison function when comparing entity-tags for If-None-Match (Section 2.3.2), since weak entity-tags can be used for cache validation even if there have been changes to the representation data.

Spec: https://tools.ietf.org/html/rfc7232#section-3.2 The If-None-Match header field.

Variants

Any

This corresponds to '*'.

EntityTags

The header field names which will influence the response representation.

Trait Implementations

impl Header for IfNoneMatch

fn header_name() -> &'static str

fn parse_header(raw: &[Vec<u8>]) -> Option<IfNoneMatch>

impl HeaderFormat for IfNoneMatch

fn fmt_header(&self, fmt: &mut Formatter) -> Result

impl Header for IfNoneMatch

fn header_name() -> &'static str

fn parse_header(raw: &[Vec<u8>]) -> Option<IfNoneMatch>

impl HeaderFormat for IfNoneMatch

fn fmt_header(&self, fmt: &mut Formatter) -> Result

Derived Implementations

impl Debug for IfNoneMatch

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl PartialEq for IfNoneMatch

fn eq(&self, __arg_0: &IfNoneMatch) -> bool

fn ne(&self, __arg_0: &IfNoneMatch) -> bool

impl Clone for IfNoneMatch

fn clone(&self) -> IfNoneMatch

fn clone_from(&mut self, source: &Self)

impl Debug for IfNoneMatch

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl PartialEq for IfNoneMatch

fn eq(&self, __arg_0: &IfNoneMatch) -> bool

fn ne(&self, __arg_0: &IfNoneMatch) -> bool

impl Clone for IfNoneMatch

fn clone(&self) -> IfNoneMatch

fn clone_from(&mut self, source: &Self)