Need to be able to serialize and deserialize the user-facing API types for use as interchange.
Serialization has been implemented via typetag, but deserialization is also needed. Presently, this is blocked on a lack of generic deserialization inside typetag.
The solution is to switch to non-blanket trait impls, which will become feasible after #115 is closed.
Need to be able to serialize and deserialize the user-facing API types for use as interchange.
Serialization has been implemented via
typetag
, but deserialization is also needed. Presently, this is blocked on a lack of generic deserialization insidetypetag
.The solution is to switch to non-blanket trait impls, which will become feasible after #115 is closed.