[][src]Trait sqlx_core::done::Done

pub trait Done: 'static + Sized + Send + Sync + Default + Extend<Self> {
    type Database: Database;
    pub fn rows_affected(&self) -> u64;
}

Associated Types

Loading content...

Required methods

pub fn rows_affected(&self) -> u64[src]

Returns the number of rows affected by an UPDATE, INSERT, or DELETE.

Loading content...

Implementors

impl Done for AnyDone[src]

type Database = Any

impl Done for MssqlDone[src]

type Database = Mssql

impl Done for MySqlDone[src]

type Database = MySql

impl Done for PgDone[src]

type Database = Postgres

impl Done for SqliteDone[src]

type Database = Sqlite

Loading content...