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

pub trait ExecuteDsl<Conn: Connection>: Sized + QueryFragment<Conn::Backend> + QueryId {
    fn execute(&self, conn: &Conn) -> QueryResult<usize> { ... }
}

Provided Methods

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

Implementors