Module sqlx_core::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.

Re-exports§

Structs§

  • sqlx uses ahash for increased performance, at the cost of reduced DoS resistance. A HashMap using RandomState to hash the items. (Requires the std feature to be enabled.)

Enums§

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