Trying to serialize trait objects is problematic. The erased_serde
crate helps to overcome these problems, specifically with the erased_serde::serialize_trait_object
macro, which implements Serialize
for trait objects. But there is no de-serialization partner of this macro. So, how can objects which were serialized with the help of this macro be deserialized?