Module sqlx::query

source ·
Expand description

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

Structs

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