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
use header::{Header, HeaderFormat};
use std::fmt;
use header::shared::util::from_one_raw_str;
#[derive(Clone, PartialEq, Show)]
pub struct Location(pub String);
deref!(Location => String);
impl Header for Location {
fn header_name(_: Option<Location>) -> &'static str {
"Location"
}
fn parse_header(raw: &[Vec<u8>]) -> Option<Location> {
from_one_raw_str(raw).map(|s| Location(s))
}
}
impl HeaderFormat for Location {
fn fmt_header(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
fmt.write_str(&*self.0)
}
}
bench_header!(bench, Location, { vec![b"http://foo.com/hello:3000".to_vec()] });