Initial implementation of the online backup API.

This commit is contained in:
John Gallagher
2015-12-09 00:19:59 -05:00
parent e71104e6c3
commit e2f8e73635
4 changed files with 331 additions and 0 deletions

View File

@@ -82,6 +82,7 @@ pub mod types;
mod transaction;
#[cfg(feature = "load_extension")] mod load_extension_guard;
#[cfg(feature = "trace")] pub mod trace;
#[cfg(feature = "backup")] pub mod backup;
/// A typedef of the result returned by many methods.
pub type SqliteResult<T> = Result<T, SqliteError>;