MCPcopy Create free account
hub / github.com/asg017/sqlite-loadable-rs / FindCursor

Class FindCursor

tests/test_find_function.rs:80–85  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected