We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd55b5a commit fd35a02Copy full SHA for fd35a02
src/value/de.rs
@@ -272,6 +272,14 @@ impl<'de> serde::Deserializer<'de> for Map<String, Value> {
272
}
273
274
275
+
276
+impl FromStr for Map<String, Value> {
277
+ type Err = Error;
278
+ fn from_str(s: &str) -> Result<Self, Error> {
279
+ super::super::de::from_str(s)
280
+ }
281
+}
282
283
impl<'de> serde::Deserializer<'de> for Value {
284
type Error = Error;
285
0 commit comments