1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
mod array;
pub mod date_and_time;
pub mod floats;
mod integers;
mod primitives;
#[cfg(feature = "uuid")]
mod uuid;

#[doc(hidden)]
pub mod sql_types {
    #[derive(Clone, Copy, Default)] pub struct Oid;
    #[derive(Clone, Copy, Default)] pub struct Array<T>(T);
    pub type SmallSerial = ::types::SmallInt;
    pub type Serial = ::types::Integer;
    pub type BigSerial = ::types::BigInt;
    #[cfg(feature = "uuid")]
    #[derive(Clone, Copy, Default)] pub struct Uuid;
    pub type Bytea = ::types::Binary;
}