Module sqlx_core::types[][src]

Conversions between Rust and SQL types.

To see how each SQL type maps to a Rust type, see the corresponding types module for each database:

Any external types that have had Type implemented for, are re-exported in this module for convenience as downstream users need to use a compatible version of the external crate to take advantage of the implementation.

Nullable

To represent nullable SQL types, Option<T> is supported where T implements Type. An Option<T> represents a potentially NULL value from SQL.

Re-exports

pub use uuid;

Modules

chrono
ipnetwork
time

Structs

BigDecimal

A big decimal type.

BitVec

The bitvector type.

Decimal

Decimal represents a 128 bit representation of a fixed-precision decimal number. The finite set of values of type Decimal are of the form m / 10e, where m is an integer such that -296 < m < 296, and e is an integer between 0 and 28 inclusive.

Json
Uuid

A Universally Unique Identifier (UUID).

Traits

Type

Indicates that a SQL type is supported for a database.