diesel/pg/expression/extensions/
mod.rs

1//! This module contains extensions that are added to core types to aid in
2//! building expressions. These traits are not exported by default. The are also
3//! re-exported in `diesel::dsl`
4mod interval_dsl;
5mod only_dsl;
6mod tablesample_dsl;
7
8pub use self::interval_dsl::IntervalDsl;
9pub use self::only_dsl::OnlyDsl;
10pub use self::tablesample_dsl::TablesampleDsl;