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.
2 parents ec190d6 + fd35a02 commit 447170bCopy full SHA for 447170b
1 file changed
src/value/de.rs
@@ -159,6 +159,13 @@ impl FromStr for Value {
159
}
160
161
162
+impl FromStr for Map<String, Value> {
163
+ type Err = Error;
164
+ fn from_str(s: &str) -> Result<Self, Error> {
165
+ super::super::de::from_str(s)
166
+ }
167
+}
168
+
169
macro_rules! deserialize_number {
170
($method:ident) => {
171
#[cfg(not(feature = "arbitrary_precision"))]
0 commit comments