Read A CSV Into A Generic Vec Of Vecs In Rust
---
csv = "1.3.0"
serde = "1.0.214"
---
use ReaderBuilder;
use serde;
Output:
[/Users/alan/.cargo/target/55/19854259915251/_active_nvim_run:16:3] data = [
[
"a",
"b",
"c",
],
[
"d",
"e",
"f",
],
[
"g",
"h",
"i",
],
]
-- end of line --