Struct sqlx::sqlite::SqliteQueryResult
source ยท pub struct SqliteQueryResult { /* private fields */ }
Available on crate feature
sqlite
only.Implementationsยง
sourceยงimpl SqliteQueryResult
impl SqliteQueryResult
pub fn rows_affected(&self) -> u64
pub fn last_insert_rowid(&self) -> i64
Trait Implementationsยง
sourceยงimpl Debug for SqliteQueryResult
impl Debug for SqliteQueryResult
sourceยงimpl Default for SqliteQueryResult
impl Default for SqliteQueryResult
sourceยงfn default() -> SqliteQueryResult
fn default() -> SqliteQueryResult
Returns the โdefault valueโ for a type. Read more
sourceยงimpl Extend<SqliteQueryResult> for SqliteQueryResult
impl Extend<SqliteQueryResult> for SqliteQueryResult
sourceยงfn extend<T>(&mut self, iter: T)where
T: IntoIterator<Item = SqliteQueryResult>,
fn extend<T>(&mut self, iter: T)where T: IntoIterator<Item = SqliteQueryResult>,
Extends a collection with the contents of an iterator. Read more
sourceยงfn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
๐ฌThis is a nightly-only experimental API. (
extend_one
)Extends a collection with exactly one element.
sourceยงfn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
๐ฌThis is a nightly-only experimental API. (
extend_one
)Reserves capacity in a collection for the given number of additional elements. Read more
sourceยงimpl From<SqliteQueryResult> for AnyQueryResult
impl From<SqliteQueryResult> for AnyQueryResult
sourceยงfn from(done: SqliteQueryResult) -> AnyQueryResult
fn from(done: SqliteQueryResult) -> AnyQueryResult
Converts to this type from the input type.