Rename DbDone to DbOutcome

This commit is contained in:
Jonas Platte
2021-01-12 13:44:03 +01:00
parent a1d562f04b
commit 08a76f45ae
30 changed files with 91 additions and 89 deletions

View File

@@ -1,6 +1,6 @@
use crate::database::{Database, HasArguments, HasStatement, HasStatementCache, HasValueRef};
use crate::sqlite::{
SqliteArgumentValue, SqliteArguments, SqliteColumn, SqliteConnection, SqliteDone, SqliteRow,
SqliteArgumentValue, SqliteArguments, SqliteColumn, SqliteConnection, SqliteOutcome, SqliteRow,
SqliteStatement, SqliteTransactionManager, SqliteTypeInfo, SqliteValue, SqliteValueRef,
};
@@ -15,7 +15,7 @@ impl Database for Sqlite {
type Row = SqliteRow;
type Done = SqliteDone;
type Outcome = SqliteOutcome;
type Column = SqliteColumn;