Merge branch 'trace_extension' of https://github.com/gwenn/rusqlite into gwenn-trace_extension

This commit is contained in:
John Gallagher
2015-11-30 13:13:43 -05:00
4 changed files with 105 additions and 0 deletions

View File

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