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
47
48
49
50
51
52
53
54
use std::fmt;
use bytes::Bytes;
use http::uri::Authority;
#[derive(Clone, Debug, PartialEq, Eq, Hash, PartialOrd)]
pub struct Host(Authority);
impl Host {
pub fn hostname(&self) -> &str {
self.0.host()
}
pub fn port(&self) -> Option<u16> {
self.0.port()
}
}
impl ::Header for Host {
const NAME: &'static ::HeaderName = &::http::header::HOST;
fn decode(values: &mut ::Values) -> Option<Self> {
let value = Bytes::from(values.next()?.clone());
Authority::from_shared(value)
.ok()
.map(Host)
}
fn encode(&self, values: &mut ::ToValues) {
let bytes = Bytes::from(self.0.clone());
let val = ::HeaderValue::from_shared(bytes)
.expect("Authority is a valid HeaderValue");
values.append(val);
}
}
impl From<Authority> for Host {
fn from(auth: Authority) -> Host {
Host(auth)
}
}
impl fmt::Display for Host {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
fmt::Display::fmt(&self.0, f)
}
}