[][src]Enum actix_web::http::header::IfMatch

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

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 actix_http::Response;
use actix_http::http::header::IfMatch;

let mut builder = Response::Ok();
builder.set(IfMatch::Any);
use actix_http::Response;
use actix_http::http::header::{IfMatch, EntityTag};

let mut builder = Response::Ok();
builder.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

Only the listed items are a match

Trait Implementations

impl Clone for IfMatch[src]

impl Debug for IfMatch[src]

impl Display for IfMatch[src]

impl Header for IfMatch[src]

impl IntoHeaderValue for IfMatch[src]

type Error = InvalidHeaderValue

The type returned in the event of a conversion error.

impl PartialEq<IfMatch> for IfMatch[src]

impl StructuralPartialEq for IfMatch[src]

Auto Trait Implementations

impl RefUnwindSafe for IfMatch

impl Send for IfMatch

impl Sync for IfMatch

impl Unpin for IfMatch

impl UnwindSafe for IfMatch

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,