You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While it may not be possible to make the serialized Value look perfect in human-readable formats (e.g JSON), we should still at least try to make it possible to de(serialize) Value. As pointed out here with code example, currently Value fails to deserialize back.
The text was updated successfully, but these errors were encountered:
JSON will decode a variant as a map and our `Value`'s `Visitor`
implementation wasn't handling that. This resulted in us not being able
to decode back our own generated JSON in case of variants inside
variants.
Fixesdbus2#549.
While it may not be possible to make the serialized
Value
look perfect in human-readable formats (e.g JSON), we should still at least try to make it possible to de(serialize)Value
. As pointed out here with code example, currentlyValue
fails to deserialize back.The text was updated successfully, but these errors were encountered: