Module driver_prelude

Source
Expand description

Helper module to get drivers compiling again that used to be in this crate, to avoid having to replace tons of use crate::<...> imports.

This module can be glob-imported and should not clash with any modules a driver would want to implement itself.

Modules§

hash_map
A hash map implemented with quadratic probing and SIMD lookup.

Structs§

HashMap
A hash map implemented with quadratic probing and SIMD lookup.

Enums§

Either
The enum Either with variants Left and Right is a general purpose sum type with two cases.
Error
Represents all the ways a method can fail within SQLx.

Type Aliases§

Result
A specialized Result type for SQLx.