http_serde_ext/
scheme.rs

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