(pointer: *mut c_void)
| 358 | } |
| 359 | |
| 360 | unsafe extern "C" fn pointer_destroy<T>(pointer: *mut c_void) { |
| 361 | drop(Box::from_raw(pointer.cast::<T>())) |
| 362 | } |
| 363 | |
| 364 | /// [sqlite3_result_pointer](https://www.sqlite.org/bindptr.html) |
| 365 | pub fn result_pointer<T>(context: *mut sqlite3_context, name: &[u8], object: T) { |
nothing calls this directly
no outgoing calls
no test coverage detected