pub trait ExecuteDsl<Conn, DB = <Conn as AsyncConnection>::Backend>where
    Conn: AsyncConnection<Backend = DB>,
    DB: Backend,
{ fn execute<'conn, 'query>(
        query: Self,
        conn: &'conn mut Conn
    ) -> <Conn as AsyncConnectionGatWorkaround<'conn, 'query, Conn::Backend>>::ExecuteFuture
    where
        Self: 'query
; }
Expand description

The execute method

This trait should not be relied on directly by most apps. Its behavior is provided by RunQueryDsl. However, you may need a where clause on this trait to call execute from generic code.

Required Methods

Execute this command

Implementors