Struct headers_ext::IfMatch[][src]

pub struct IfMatch(_);

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

  • "xyzzy"
  • "xyzzy", "r2d2xxxx", "c3piozzzz"

Examples

use headers::IfMatch;

let if_match = IfMatch::any();

Methods

impl IfMatch
[src]

Create a new If-Match: * header.

Trait Implementations

impl Clone for IfMatch
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for IfMatch
[src]

Formats the value using the given formatter. Read more

impl PartialEq for IfMatch
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl From<ETag> for IfMatch
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for IfMatch

impl Sync for IfMatch