pub trait ExecuteDsl<Conn: Connection<Backend = DB>, DB: Backend = <Conn as Connection>::Backend>: Sized {
fn execute(self, conn: &Conn) -> QueryResult<usize>;
}
Executes the given command, returning the number of rows affected. Used
in conjunction with
update
and
delete
impl<'a, T, U, Op, Ret, Conn, DB> ExecuteDsl<Conn, DB> for BatchInsertStatement<T, &'a [U], Op, Ret> where
Conn: Connection<Backend = DB>,
DB: Backend + SupportsDefaultKeyword,
InsertStatement<T, &'a [U], Op, Ret>: ExecuteDsl<Conn>,
impl<Conn, T> ExecuteDsl<Conn> for T where
Conn: Connection,
T: QueryFragment<Conn::Backend> + QueryId,