Y
Hacker News
new
|
ask
|
show
|
jobs
by
q3k
2070 days ago
How would you express deserializing these 'polymorphic JSON' objects using serde/Rust?
1 comments
speedgoose
2070 days ago
Using a rust enum I guess.
link
q3k
2070 days ago
You're right, this does seem to work [1]. I wasn't aware that serde would attempt to deserialize multiple enum variants until something matches.
[1] -
https://serde.rs/enum-representations.html#untagged
link
masklinn
2070 days ago
Yeah that's a rather common scheme out there so Serde does provide built-in support for this deserialisation. Probably better for deserialisation performances to use properly tagged enums, but if you don't have a choice Serde's got your back.
link