Safe Rust API to libesedb (via libesedb-sys).
```rust use libesedb::EseDb;
fn main() {
let filename = std::env::args()
.nth(1)
.unwrapor("Catalog1.edb".tostring());
let db = EseDb::open(filename).unwrap();
println!("Db load finished!");
let string = db.tablebyname("string").unwrap();
for rec in string.iterrecords().unwrap() {
let rec = rec.unwrap();
let vals = rec.itervalues().unwrap().map(|v| v.unwrapordefault().to_string()).collect::
A tests/CacheStorage.edb
can be obtained from from AppData\Local\Packages\Microsoft.Windows.CloudExperienceHost_cw5n1h2txyewy\AppData\CacheStorage
This project is made available under the LGPL-3.0-or-later.