http_serde_ext/
method.rs

1type Type = http::Method;
2const EXPECT_MESSAGE: &str = "valid method 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);