Structs§
- QueryAs
- A single SQL query as a prepared statement, mapping results using FromRow. Returned byquery_as().
Functions§
- query_as 
- Execute a single SQL query as a prepared statement (transparently cached).
Maps rows to Rust types using FromRow.
- query_as_ with 
- Execute a single SQL query, with the given arguments as a prepared statement (transparently cached).
Maps rows to Rust types using FromRow.
- query_as_ with_ result 
- Same as query_as_withbut takes arguments as a Result
- query_statement_ as 
- query_statement_ as_ with