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
I'm writing a serialization format that uses explicit optionals. Similarly to serde_json::Value, my Value enum has a Null variant representing the null value. When asked to deserialize_any(), this null value calls visit_none() on the supplied visitor. However, UntaggedUnitVisitor doesn't implement visit_none(), only visit_unit(), so this fails.
It seems to me that UntaggedUnitVisitor should ideally implement visit_none() because OptionVisitor treats unit and None as the same, so this would be the consistent behavior.
Another reason is that although I could fix the error by making Value::deserialize_any() call visitor.visit_unit() instead of visitor.visit_none(), I'd rather not change this behavior, because untagged enums are what I would consider more of a less-used special case, whereas Option has very regular structure and semantics, and it is used a lot more frequently too.
The text was updated successfully, but these errors were encountered:
@H2CO3 , I found, that the problem here was in calling deserialize_any. If derived code would call deserialize_unit to request the unit variant for untagged enum, would that solve problem with your format?
I'm writing a serialization format that uses explicit optionals. Similarly to
serde_json::Value
, myValue
enum has aNull
variant representing the null value. When asked todeserialize_any()
, this null value callsvisit_none()
on the supplied visitor. However,UntaggedUnitVisitor
doesn't implementvisit_none()
, onlyvisit_unit()
, so this fails.It seems to me that
UntaggedUnitVisitor
should ideally implementvisit_none()
becauseOptionVisitor
treats unit andNone
as the same, so this would be the consistent behavior.Another reason is that although I could fix the error by making
Value::deserialize_any()
callvisitor.visit_unit()
instead ofvisitor.visit_none()
, I'd rather not change this behavior, because untagged enums are what I would consider more of a less-used special case, whereasOption
has very regular structure and semantics, and it is used a lot more frequently too.The text was updated successfully, but these errors were encountered: