[−][src]Enum hyper::header::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 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 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]
fn header_name() -> &'static str
[src]
fn parse_header(raw: &Raw) -> Result<Self>
[src]
fn fmt_header(&self, f: &mut Formatter) -> Result
[src]
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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,