[][src]Trait sqlx::prelude::Done

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

Associated Types

Loading content...

Required methods

fn rows_affected(&self) -> u64

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...