drizzle-types 0.1.5

A type-safe SQL query builder for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! PostgreSQL type definitions
//!
//! This module provides type definitions for PostgreSQL including:
//!
//! - [`PostgreSQLType`] - PostgreSQL column types
//! - [`TypeCategory`] - Rust type classification for PostgreSQL mapping
//! - [`PgTypeCategory`] - SQL type categories for parsing

pub mod ddl;
mod sql_type;
mod type_category;

pub use sql_type::PostgreSQLType;
pub use type_category::{PgTypeCategory, TypeCategory};