sqlx_xugu/types/mod.rs
1mod bool;
2mod bytes;
3mod float;
4mod int;
5mod std_duration;
6mod str;
7mod text;
8mod uint;
9
10/// 简单空间类型
11mod geometry;
12
13#[cfg(feature = "json")]
14mod json;
15
16#[cfg(feature = "bigdecimal")]
17mod bigdecimal;
18
19#[cfg(feature = "rust_decimal")]
20mod rust_decimal;
21
22#[cfg(feature = "chrono")]
23mod chrono;
24
25#[cfg(feature = "time")]
26mod time;
27
28#[cfg(feature = "uuid")]
29mod uuid;
30
31pub use geometry::*;