rusqlite/tests
gwenn 2af75d1f13 VTabCursor lifetime should be bound to VTab lifetime
```c
struct sqlite3_vtab_cursor {
  sqlite3_vtab *pVtab;      /* Virtual table of this cursor */
```
It seems that we need to introduce a lifetime on `VTab` trait
to express such constraint:
https://users.rust-lang.org/t/associated-type-with-lifetime-bound/7256
But there may be another/new way to do it.
2020-06-01 09:48:49 +02:00
..
config_log.rs Rustfmt 2019-08-09 20:03:46 +02:00
deny_single_threaded_sqlite_config.rs Use rusqlite::ffi instead of extern crate libsqlite3_sys 2019-01-29 14:59:41 -08:00
vtab.rs VTabCursor lifetime should be bound to VTab lifetime 2020-06-01 09:48:49 +02:00