actix-web 4.13.0

Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust
Documentation
use super::{common_header, EntityTag, IF_MATCH};

common_header! {
    /// `If-Match` header, defined
    /// in [RFC 7232 ยง3.1](https://datatracker.ietf.org/doc/html/rfc7232#section-3.1)
    ///
    /// 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.
    ///
    /// # Note
    /// This is a request header used for conditional requests (typically to avoid lost updates).
    /// Servers should not send `If-Match` in responses; use [`ETag`](super::ETag) to describe the
    /// current representation instead.
    ///
    /// # ABNF
    /// ```plain
    /// If-Match = "*" / 1#entity-tag
    /// ```
    ///
    /// # Example Values
    /// * `"xyzzy"`
    /// * "xyzzy", "r2d2xxxx", "c3piozzzz"
    ///
    /// # Examples
    /// ```
    /// use actix_web::{http::header::IfMatch, test};
    ///
    /// let req = test::TestRequest::default()
    ///     .insert_header(IfMatch::Any)
    ///     .to_http_request();
    /// # let _ = req;
    /// ```
    ///
    /// ```
    /// use actix_web::{http::header::{EntityTag, IfMatch}, test};
    ///
    /// let req = test::TestRequest::default()
    ///     .insert_header(IfMatch::Items(vec![
    ///         EntityTag::new(false, "xyzzy".to_owned()),
    ///         EntityTag::new(false, "foobar".to_owned()),
    ///         EntityTag::new(false, "bazquux".to_owned()),
    ///     ]))
    ///     .to_http_request();
    /// # let _ = req;
    /// ```
    (IfMatch, IF_MATCH) => {Any / (EntityTag)+}

    test_parse_and_format {
        crate::http::header::common_header_test!(
            test1,
            [b"\"xyzzy\""],
            Some(HeaderField::Items(
                vec![EntityTag::new_strong("xyzzy".to_owned())])));

        crate::http::header::common_header_test!(
            test2,
            [b"\"xyzzy\", \"r2d2xxxx\", \"c3piozzzz\""],
            Some(HeaderField::Items(
                vec![EntityTag::new_strong("xyzzy".to_owned()),
                     EntityTag::new_strong("r2d2xxxx".to_owned()),
                     EntityTag::new_strong("c3piozzzz".to_owned())])));
        crate::http::header::common_header_test!(test3, [b"*"], Some(IfMatch::Any));
    }
}