fn run_backup_steps(
src: *mut sqlite3,
dest: *mut sqlite3,
dest_path: &Path,
) -> Result<(), Error>Expand description
Synchronous backup step loop using the SQLite C API.
ยงSafety
The caller must ensure src and dest are valid sqlite3* pointers and
that the SQLite handles they belong to remain locked for the duration of
this call.