| 78 | |
| 79 | #[repr(C)] |
| 80 | pub struct FindCursor { |
| 81 | /// Base class. Must be first |
| 82 | base: sqlite3_vtab_cursor, |
| 83 | rowid: i64, |
| 84 | value: Option<String>, |
| 85 | } |
| 86 | impl FindCursor { |
| 87 | fn new() -> FindCursor { |
| 88 | let base: sqlite3_vtab_cursor = unsafe { mem::zeroed() }; |
nothing calls this directly
no outgoing calls
no test coverage detected