Module query

Source
Expand description

Types and traits for the query family of functions and macros.

Structs§

Map
SQL query that will map its results to owned Rust types.
Query
Raw SQL query with bind parameters. Returned by query.
QueryAs
Raw SQL query with bind parameters, mapped to a concrete type using FromRow. Returned from query_as.
QueryScalar
Raw SQL query with bind parameters, mapped to a concrete type using FromRow on (O,). Returned from query_scalar.