rust-query 0.9.1

A query builder using rust concepts.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
error[E0502]: cannot borrow `*txn` as mutable because it is also borrowed as immutable
  --> tests/compile/iterator_invalidation.rs:19:9
   |
13 |           let names = txn.query(|rows| {
   |                       --- immutable borrow occurs here
...
19 | /         txn.insert_ok(MyTable {
20 | |             name: "foo".to_owned(),
21 | |         });
   | |__________^ mutable borrow occurs here
22 |
23 |           for name in names {
   |                       ----- immutable borrow later used here