Enum edge::header::IfMatch [] [src]

pub enum IfMatch {
    Any,
    Items(Vec<EntityTag>),
}

If-Match header, defined in RFC7232

The If-Match header field makes the request method conditional on the recipient origin server either having at least one current representation of the target resource, when the field-value is "*", or having a current representation of the target resource that has an entity-tag matching a member of the list of entity-tags provided in the field-value.

An origin server MUST use the strong comparison function when comparing entity-tags for If-Match, since the client intends this precondition to prevent the method from being applied if there have been any changes to the representation data.

ABNF

If-Match = "*" / 1#entity-tag

Example values

Examples

use hyper::header::{Headers, IfMatch};

let mut headers = Headers::new();
headers.set(IfMatch::Any);
use hyper::header::{Headers, IfMatch, EntityTag};

let mut headers = Headers::new();
headers.set(
    IfMatch::Items(vec![
        EntityTag::new(false, "xyzzy".to_owned()),
        EntityTag::new(false, "foobar".to_owned()),
        EntityTag::new(false, "bazquux".to_owned()),
    ])
);

Variants

Any

Any value is a match

Items

Only the listed items are a match

Trait Implementations

impl Header for IfMatch

fn header_name() -> &'static str

fn parse_header(raw: &[Vec<u8>]) -> Result<IfMatch, Error>

fn fmt_header(&self, f: &mut Formatter) -> Result<(), Error>

impl Display for IfMatch

fn fmt(&self, f: &mut Formatter) -> Result<(), Error>

Derived Implementations

impl PartialEq<IfMatch> for IfMatch

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

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

impl Debug for IfMatch

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

impl Clone for IfMatch

fn clone(&self) -> IfMatch

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