Crate sqlx_core_guts

Source
Expand description

Core of SQLx, the rust SQL toolkit. Not intended to be used directly.

Modules§

acquire
any
Generic database driver with the specific driver selected at runtime.
arguments
Types and traits for passing arguments to SQL queries.
column
connection
database
Traits to represent a database driver.
decode
Provides Decode for decoding values from the database.
describe
encode
Provides Encode for encoding values for the database.
error
Types for working with errors produced by SQLx.
executor
ext
from_row
io
logger
migrate
mssqlmssql
Microsoft SQL (MSSQL) database driver.
mysqlmysql
MySQL database driver.
net
pool
Provides the connection pool for asynchronous SQLx connections.
postgrespostgres
PostgreSQL database driver.
query
query_as
query_builder
Runtime query-builder API.
query_scalar
row
sqlitesqlite
SQLite database driver.
statement
transaction
type_info
types
Conversions between Rust and SQL types.
value

Enums§

Either
The enum Either with variants Left and Right is a general purpose sum type with two cases.