(context: *mut sqlite3_context, values: &[*mut sqlite3_value])
| 69 | } |
| 70 | |
| 71 | fn wrapped(context: *mut sqlite3_context, values: &[*mut sqlite3_value]) -> Result<()> { |
| 72 | api::result_text( |
| 73 | context, |
| 74 | format!("Wrapped access! {}", api::value_text(&values[0]).unwrap()), |
| 75 | )?; |
| 76 | Ok(()) |
| 77 | } |
| 78 | |
| 79 | #[repr(C)] |
| 80 | pub struct FindCursor { |
nothing calls this directly
no test coverage detected