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 fromquery_as
. - Query
Scalar - Raw SQL query with bind parameters, mapped to a concrete type using
FromRow
on(O,)
. Returned fromquery_scalar
.