commit | 3e92abfbfe16baad364fafce8b86d28481b2a50a | [log] [tgz] |
---|---|---|
author | Matthew Maurer <[email protected]> | Thu Mar 09 18:07:07 2023 +0000 |
committer | Automerger Merge Worker <[email protected]> | Thu Mar 09 18:07:07 2023 +0000 |
tree | 54a419676109a710f3f0e89202a8dbacf17ddd18 | |
parent | 1dad32328773b86e7a8d3001d53600d60746d09a [diff] | |
parent | 2561a4b4bd9939395f488d19218754803353d3a0 [diff] |
Make csv available to product and vendor am: 5d6d3d2d3f am: 1d92abf68f am: 8c61bce057 am: 2561a4b4bd Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/csv/+/2475528 Change-Id: I9bd675be61554f460a0f6e40cd739777969b701d Signed-off-by: Automerger Merge Worker <[email protected]>
A fast and flexible CSV reader and writer for Rust, with support for Serde.
Dual-licensed under MIT or the UNLICENSE.
If you're new to Rust, the tutorial is a good place to start.
Add this to your Cargo.toml
:
[dependencies] csv = "1.2"
This example shows how to read CSV data from stdin and print each record to stdout.
There are more examples in the cookbook.
use std::{error::Error, io, process}; fn example() -> Result<(), Box<dyn Error>> { // Build the CSV reader and iterate over each record. let mut rdr = csv::Reader::from_reader(io::stdin()); for result in rdr.records() { // The iterator yields Result<StringRecord, Error>, so we check the // error here. let record = result?; println!("{:?}", record); } Ok(()) } fn main() { if let Err(err) = example() { println!("error running example: {}", err); process::exit(1); } }
The above example can be run like so:
$ git clone git://github.com/BurntSushi/rust-csv $ cd rust-csv $ cargo run --example cookbook-read-basic < examples/data/smallpop.csv
This example shows how to read CSV data from stdin into your own custom struct. By default, the member names of the struct are matched with the values in the header record of your CSV data.
use std::{error::Error, io, process}; #[derive(Debug, serde::Deserialize)] struct Record { city: String, region: String, country: String, population: Option<u64>, } fn example() -> Result<(), Box<dyn Error>> { let mut rdr = csv::Reader::from_reader(io::stdin()); for result in rdr.deserialize() { // Notice that we need to provide a type hint for automatic // deserialization. let record: Record = result?; println!("{:?}", record); } Ok(()) } fn main() { if let Err(err) = example() { println!("error running example: {}", err); process::exit(1); } }
The above example can be run like so:
$ git clone git://github.com/BurntSushi/rust-csv $ cd rust-csv $ cargo run --example cookbook-read-serde < examples/data/smallpop.csv