Lines Matching full:csv
1 csv chapter
3 A fast and flexible CSV reader and writer for Rust, with support for Serde.
5 …status](https://github.com/BurntSushi/rust-csv/workflows/ci/badge.svg)](https://github.com/BurntSu…
6 [](https://crates.io/crates/csv)
13 https://docs.rs/csv
16 [tutorial](https://docs.rs/csv/1.*/csv/tutorial/index.html)
22 To bring this crate into your repository, either add `csv` to your
23 `Cargo.toml`, or run `cargo add csv`.
28 This example shows how to read CSV data from stdin and print each record to
32 [cookbook](https://docs.rs/csv/1.*/csv/cookbook/index.html).
38 // Build the CSV reader and iterate over each record.
39 let mut rdr = csv::Reader::from_reader(io::stdin());
60 $ git clone git://github.com/BurntSushi/rust-csv
61 $ cd rust-csv
62 $ cargo run --example cookbook-read-basic < examples/data/smallpop.csv
67 This example shows how to read CSV data from stdin into your own custom struct.
69 header record of your CSV data.
83 let mut rdr = csv::Reader::from_reader(io::stdin());
104 $ git clone git://github.com/BurntSushi/rust-csv
105 $ cd rust-csv
106 $ cargo run --example cookbook-read-serde < examples/data/smallpop.csv