pgorm 0.3.0

A model-definition-first, AI-friendly PostgreSQL ORM for Rust
Documentation
1
2
3
4
5
6
7
8
//! PostgreSQL special types.
//!
//! This module provides Rust types for PostgreSQL-specific types that go beyond
//! standard SQL, including Range types.

mod range;

pub use range::{Bound, Range};