rust-csv
rust-csv copied to clipboard
A CSV parser for Rust, with Serde support.
I'm trying to deserialize `Option` from inside a custom deserialize implementation that calls `deserialize_map` and then `next_key`/`next_value` with all type info available. Nevertheless, it ends up calling `deserialize_any` instead of...
I noticed the needed call to `has_headers(false)` was missing in the docs so I added this call.
#### Briefly describe the question, bug or feature request. The crates.io badges in the project Readmes (http://meritbadge.herokuapp.com/csv) no longer load.
#### What version of the `csv` crate are you using? 1.1.6 #### Briefly describe the question, bug or feature request. Serialize the header prefixed with a comment character (eg. '#')...
Closes #241. One concern I have after looking at the code is how much duplication there is wrt the examples. This one example seems to have been in `src/lib.rs`, `README.md`,...
This is just a documentation suggestion so I'm not following the usual issue format if that's okay. As a new user of this crate as of today, I noticed that...
When user indicates that no headers are available, then the trim doesn't work very well for the first row ```rust #[derive(serde::Deserialize, Debug)] struct TestStruct { col1: String, col2: String, col3:...
When user indicates that no headers are available, then the trim doesn't work very well for the first row ```rust #[derive(serde::Deserialize, Debug)] struct TestStruct { col1: String, col2: String, col3:...
I want to use this library in order to import/export csv files to/from a key-value database, I use HashMap to store this data. This works fine for deserializing, however I...