Trait pg_async::IntoQueryPieces [] [src]

pub trait IntoQueryPieces {
    fn into_query_pieces(self) -> PgOperation;
}

Converts the fn execute input into a vector of query pieces.

Required Methods

Returns the number of SQL statements (the library must know how many results to expect) and the list of pieces to escape and join.

Implementors