1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
use std::iter::{Extend, IntoIterator};
#[derive(Debug, Default)]
pub struct SqliteQueryResult {
pub(super) changes: u64,
pub(super) last_insert_rowid: i64,
}
impl SqliteQueryResult {
pub fn rows_affected(&self) -> u64 {
self.changes
}
pub fn last_insert_rowid(&self) -> i64 {
self.last_insert_rowid
}
}
impl Extend<SqliteQueryResult> for SqliteQueryResult {
fn extend<T: IntoIterator<Item = SqliteQueryResult>>(&mut self, iter: T) {
for elem in iter {
self.changes += elem.changes;
self.last_insert_rowid = elem.last_insert_rowid;
}
}
}
#[cfg(feature = "any")]
impl From<SqliteQueryResult> for crate::any::AnyQueryResult {
fn from(done: SqliteQueryResult) -> Self {
crate::any::AnyQueryResult {
rows_affected: done.changes,
last_insert_id: Some(done.last_insert_rowid),
}
}
}