Trait diesel::ExecuteDsl [] [src]

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

Provided Methods

fn execute(&self, conn: &Connection) -> QueryResult<usize>

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

Implementors