Expand description
PostgreSQL specific SQL types
Note: All types in this module can be accessed through diesel::sql_types
Structs§
- The
Array
SQL type. - The
CIDR
SQL type. This type can only be used withfeature = "network-address"
orfeature = "ipnet-address"
. - The
INET
SQL type. This type can only be used withfeature = "network-address"
orfeature = "ipnet-address"
. - The
jsonb
SQL type. This type can only be used withfeature = "serde_json"
- The
MACADDR
SQL type. - The PostgreSQL Money type.
- The
OID
SQL type. This is a PostgreSQL specific type. - The
Range
SQL type. - The
Record
(a.k.a. tuple) SQL type. - The “timestamp with time zone” SQL type, which PostgreSQL abbreviates to
timestamptz
. - The
UUID
SQL type. This type can only be used withfeature = "uuid"