Closed Luro02 closed 5 years ago
https://rust-lang-nursery.github.io/api-guidelines/interoperability.html
You can derive most of them (Serialize and Deserialize are from Serde):
#[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash, Debug, Default, Serialize, Deserialize)]
Only Display has to be implemented manually
Yes, this would definitely make sense
Thanks!
https://rust-lang-nursery.github.io/api-guidelines/interoperability.html
You can derive most of them (Serialize and Deserialize are from Serde):
Only Display has to be implemented manually