dtolnay / erased-serde

Type-erased Serialize, Serializer and Deserializer traits
Apache License 2.0
709 stars 36 forks source link

Add DynClone as a supertrait for Serialize (behind a feature flag?) #105

Closed dmyyy closed 5 months ago

dmyyy commented 5 months ago

I want to create a HashMap<&'static str, Box<dyn Serialize>> and be able to clone it. It seems like this might be possible via https://github.com/dtolnay/dyn-clone.