Trait diesel::prelude::ExecuteDsl [] [src]

pub trait ExecuteDsl<Conn: Connection<Backend = DB>, DB: Backend = <Conn as Connection>::Backend>: Sized {
    fn execute(self, conn: &Conn) -> QueryResult<usize>;
}

Required Methods

Executes the given command, returning the number of rows affected. Used in conjunction with update and delete

Implementors