remove path::de "'any'" unneeded single quotes (#926)

* fix `route` module clippy warning

* remove `path::de` `"'any'"` unneeded singgle quotes,changes to `"any"`

Co-authored-by: zys864 <[email protected]>
This commit is contained in:
zys864
2022-04-09 18:33:44 +02:00
committed by GitHub
co-authored by zys864
parent f13eab893a
commit d177a65f24
+1 -1
View File
@@ -56,7 +56,7 @@ impl<'de> PathDeserializer<'de> {
impl<'de> Deserializer<'de> for PathDeserializer<'de> {
type Error = PathDeserializationError;
unsupported_type!(deserialize_any, "'any'");
unsupported_type!(deserialize_any, "any");
unsupported_type!(deserialize_bytes, "bytes");
unsupported_type!(deserialize_option, "Option<T>");
unsupported_type!(deserialize_identifier, "identifier");