rusqlite/src
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
..
types Fix missing docs 2020-05-21 00:48:06 -07:00
util Fix SqliteMallocString::from_str on arm32 2020-04-23 13:58:50 -07:00
vtab VTabCursor lifetime should be bound to VTab lifetime 2020-06-01 09:48:49 +02:00
backup.rs
blob.rs
busy.rs
cache.rs Cache param count and make statement cache more effective 2020-04-16 12:05:56 -07:00
collation.rs Avoid relying on sqlite to justify str::from_utf8_unchecked 2020-04-14 09:31:29 -07:00
column.rs adding ability to work with sqlite compiled with -DSQLITE_OMIT_DECLTYPE 2020-06-01 06:31:27 +03:00
config.rs Fix missing docs 2020-05-21 00:48:06 -07:00
context.rs Replace pub(crate) by pub(super) visibilty 2020-05-16 10:18:25 +02:00
error.rs Fix missing docs 2020-05-21 00:48:06 -07:00
functions.rs Fix missing docs 2020-05-21 00:48:06 -07:00
hooks.rs Fix missing docs 2020-05-21 00:48:06 -07:00
inner_connection.rs Activate extended result codes asap 2020-05-16 11:01:30 +02:00
lib.rs Fix missing docs 2020-05-21 00:48:06 -07:00
limits.rs Document which features are required, and add vtab usage examples (#669) 2020-04-05 22:15:27 -07:00
load_extension_guard.rs Document which features are required, and add vtab usage examples (#669) 2020-04-05 22:15:27 -07:00
pragma.rs
raw_statement.rs adding ability to work with sqlite compiled with -DSQLITE_OMIT_DECLTYPE 2020-06-01 06:31:27 +03:00
row.rs Document Rows::map and FallibleStreamingIterator impl 2020-05-24 20:53:52 +02:00
session.rs Add still missing docs in session module 2020-05-21 00:48:06 -07:00
statement.rs Replace pub(crate) by pub(super) visibilty 2020-05-16 10:18:25 +02:00
trace.rs Fix format string error in rusqlite::trace::log 2020-04-14 12:23:15 -07:00
transaction.rs Fix missing docs 2020-05-21 00:48:06 -07:00
unlock_notify.rs UnlockNotification should hold mutex when calling condvar 2020-04-15 13:52:19 -07:00
version.rs Rust 2018 2018-10-30 20:15:08 +01:00