pub struct IfMatch(EntityTagRange);
Expand description
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();
Tuple Fields§
§0: EntityTagRange
Implementations§
Trait Implementations§
source§impl Header for IfMatch
impl Header for IfMatch
source§impl PartialEq for IfMatch
impl PartialEq for IfMatch
impl StructuralPartialEq for IfMatch
Auto Trait Implementations§
impl !Freeze for IfMatch
impl RefUnwindSafe for IfMatch
impl Send for IfMatch
impl Sync for IfMatch
impl Unpin for IfMatch
impl UnwindSafe for IfMatch
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more