pub fn register_entrypoint_load_permanently<F>(
    db: *mut sqlite3,
    _pz_err_msg: *mut *mut c_char,
    p_api: *mut sqlite3_api_routines,
    callback: F
) -> c_uintwhere
    F: Fn(*mut sqlite3) -> Result<()>,
Expand description

Low-level wrapper around an entrypoint to a SQLite extension that loads permanently. You shouldn’t have to use this directly - the sqlite_entrypoint_permanent macro will do this for you.