Skip to content
This repository has been archived by the owner on Nov 27, 2023. It is now read-only.

Latest commit

 

History

History
10 lines (8 loc) · 297 Bytes

README.md

File metadata and controls

10 lines (8 loc) · 297 Bytes

Engine for making key-value queries in csv file

Example

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);