Anders Evensen
Results
42
comments of
Anders Evensen
I believe the issue here is that CSV is not actually a "self-describing" format, and therefore should not support `deserialize_any()`. A single element in a CSV does not encode it's...
It's definitely surprising, because you could easily implement most `#[serde(flatten)]` use cases by hand without needing to call `deserialize_any()`. I found a [couple](https://github.com/serde-rs/serde/issues/1881) [issues](https://github.com/serde-rs/serde/issues/1529) on `serde`'s repository that ask questions...