1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
header! {
    /// `Location` header, defined in
    /// [RFC7231](http://tools.ietf.org/html/rfc7231#section-7.1.2)
    ///
    /// The `Location` header field is used in some responses to refer to a
    /// specific resource in relation to the response.  The type of
    /// relationship is defined by the combination of request method and
    /// status code semantics.
    ///
    /// # ABNF
    ///
    /// ```text
    /// Location = URI-reference
    /// ```
    ///
    /// # Example values
    /// * `/People.html#tim`
    /// * `http://www.example.net/index.html`
    ///
    /// # Examples
    ///
    /// ```
    /// use hyperx::header::{Headers, Location};
    ///
    /// let mut headers = Headers::new();
    /// headers.set(Location::new("/People.html#tim"));
    /// ```
    ///
    /// ```
    /// use hyperx::header::{Headers, Location};
    ///
    /// let mut headers = Headers::new();
    /// headers.set(Location::new("http://www.example.com/index.html"));
    /// ```
    // TODO: Use URL
    (Location, "Location") => Cow[str]

    test_location {
        // Testcase from RFC
        test_header!(test1, vec![b"/People.html#tim"]);
        test_header!(test2, vec![b"http://www.example.net/index.html"]);
    }

}

bench_header!(bench, Location, { vec![b"http://foo.com/hello:3000".to_vec()] });