Deserialize CSVs, one record at a time.
```rust use csvstream::{ByteRecord, read_csv};
let mut csv = &b"1,2\n3,4"[..]; let records = readcsv(&mut csv).collect::>(); asserteq!(records.len(), 2); asserteq!(&records[0][0], b"1"); asserteq!(&records[0][1], b"2"); asserteq!(&records[1][0], b"3"); asserteq!(&records[1][1], b"4"); ```
See the docs for more info.