http_serde_ext_ios/
header_name.rs1type Type = http::HeaderName;
2const EXPECT_MESSAGE: &str = "a header name";
3
4serialize_str!(Type);
5create_visitor!(Visitor, Type, EXPECT_MESSAGE, (visit_str, &str));
6deserialize_str!(Visitor, Type);
7
8derive_extension_types!(super::Type);
9derive_hash_types!(super::Type);