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

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.

Implementations on Foreign Types

Implementors