We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 50a10a7 + 750d04c commit a27d99aCopy full SHA for a27d99a
1 file changed
README.md
@@ -18,6 +18,8 @@ an iterator, which has the same API when iterating the `BTreeMap`.
18
You can take advantage of `OwnedValue` to parse a `String` containing unparsed `JSON` into a `Value` without having to worry about lifetimes,
19
as `OwnedValue` will take ownership of the `String` and reference slices of it, rather than making copies.
20
21
+Note: `OwnedValue` does not implement `Deserialize`.
22
+
23
# Limitations
24
The feature flag `cowkeys` uses `Cow<str>` instead of `&str` as keys in objects. This enables support for escaped data in keys.
25
Without the `cowkeys` feature flag `&str` is used, which does not allow any JSON escaping characters in keys.
0 commit comments