csvquery 0.3.1

Engine for making key-value queries in csv file
Documentation
1
2
3
4
5
6
7
8
9
10
# Engine for making key-value queries in csv file

## Example

```rust
let opts = EngineOptions::default();
let mut engine: Engine<String, YourType> = Engine::from_file_with_opts("file.csv", YourType::make_key, opts).unwrap();
let value = engine.get_from_file("key");
println!("{:?}", value);
```