[go: up one dir, main page]

diesel 0.5.0

A safe, extensible ORM and Query builder
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod array;
pub mod date_and_time;
pub mod floats;
mod integers;
mod primitives;

#[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;
}