You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
8 months ago | |
---|---|---|
src | 8 months ago | |
.gitignore | 8 months ago | |
Cargo.lock | 8 months ago | |
Cargo.toml | 8 months ago | |
LICENSE | 8 months ago | |
README.md | 8 months ago |
README.md
Rust Dynamic Serde Stuff
Imagine you want to have a bunch of structs that implement a certain trait
but should also be de-/serializable.
You can just wrap them in an enum
and call the methods from this enum
after you cast them to trait-objects.
See the main with many comments for more information.