Struct sqlx::mysql::MySqlQueryResult
source ยท pub struct MySqlQueryResult { /* private fields */ }
Available on crate feature
mysql
only.Implementationsยง
sourceยงimpl MySqlQueryResult
impl MySqlQueryResult
pub fn last_insert_id(&self) -> u64
pub fn rows_affected(&self) -> u64
Trait Implementationsยง
sourceยงimpl Debug for MySqlQueryResult
impl Debug for MySqlQueryResult
sourceยงimpl Default for MySqlQueryResult
impl Default for MySqlQueryResult
sourceยงfn default() -> MySqlQueryResult
fn default() -> MySqlQueryResult
Returns the โdefault valueโ for a type. Read more
sourceยงimpl Extend<MySqlQueryResult> for MySqlQueryResult
impl Extend<MySqlQueryResult> for MySqlQueryResult
sourceยงfn extend<T>(&mut self, iter: T)where
T: IntoIterator<Item = MySqlQueryResult>,
fn extend<T>(&mut self, iter: T)where T: IntoIterator<Item = MySqlQueryResult>,
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<MySqlQueryResult> for AnyQueryResult
impl From<MySqlQueryResult> for AnyQueryResult
sourceยงfn from(done: MySqlQueryResult) -> AnyQueryResult
fn from(done: MySqlQueryResult) -> AnyQueryResult
Converts to this type from the input type.