Hacker News new | ask | show | jobs
by Ar-Curunir 3247 days ago
It's the same with `rust` and `serde`; it's a great feeling!
1 comments

I can imagine :) I think over in Rust-land it's something like

   #[derive(FromJSON)]
isn't it?

  #[derive(Serialize, Deserialize)]
but yeah, same difference.
Ah. That derives both "ToJSON" and "FromJSON", as Aeson calls them. Cool!
Yeah, and it's actually more general than that: it describes how to serialize and deserialize them generally, so you could use, say, serde_json to get json, or serde_yaml to get yaml.
Huh, nice.