ilmen_http/http/
header.rs

1pub type Headers = Vec<Header>;
2pub type Header = (HeaderKey, HeaderValue);
3pub type HeaderKey = String;
4pub type HeaderValue = String;