(raw: *mut c_void)
| 18 | } |
| 19 | |
| 20 | unsafe extern "C" fn cstring_destructor(raw: *mut c_void) { |
| 21 | drop(CString::from_raw(raw.cast::<c_char>())); |
| 22 | } |
| 23 | |
| 24 | impl Statement { |
| 25 | pub fn prepare(db: *mut sqlite3, sql: &str) -> Result<Self, Box<dyn Error>> { |
nothing calls this directly
no outgoing calls
no test coverage detected