Struct hyper::header::common::host::HostExperimental
[-]
[+]
[src]
pub struct Host(pub String);
The Host
header.
HTTP/1.1 requires that all requests include a Host
header, and so hyper
client requests add one automatically.
Currently is just a String, but it should probably become a better type, like url::Host or something.