[][src]Struct headers::IfMatch

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]

pub fn any() -> IfMatch[src]

Create a new If-Match: * header.

Trait Implementations

impl Clone for IfMatch[src]

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

Performs copy-assignment from source. Read more

impl PartialEq<IfMatch> for IfMatch[src]

impl From<ETag> for IfMatch[src]

impl Debug for IfMatch[src]

impl Header for IfMatch[src]

Auto Trait Implementations

impl Send for IfMatch

impl Sync for IfMatch

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Same for T

type Output = T

Should always be Self