rust-query 0.9.1

A query builder using rust concepts.
Documentation
1
2
3
4
5
6
7
8
error: lifetime may not live long enough
  --> tests/compile/optional_invariant.rs:16:42
   |
13 |         let score = txn.query(|rows| {
   |                                ---- has type `&mut Query<'_, '1, v0::Schema>`
...
16 |             txn.query_one(optional(|row| row.then(&item.score)))
   |                                          ^^^^^^^^^^^^^^^^^^^^^ returning this value requires that `'1` must outlive `'static`