diesel/sqlite/expression/mod.rs
1//! Sqlite related query builder extensions.
2//!
3//! Everything in this module is re-exported from database agnostic locations.
4//! You should rely on the re-exports rather than this module directly. It is
5//! kept separate purely for documentation purposes.
6
7pub(crate) mod expression_methods;
8pub mod functions;
9pub(crate) mod helper_types;
10mod operators;
11
12mod return_type_helpers {
13 #[allow(unused_imports)]
14 #[doc(inline)]
15 pub use super::functions::return_type_helpers_reexported::*;
16}
17
18/// SQLite specific expression DSL methods.
19///
20/// This module will be glob imported by
21/// [`diesel::dsl`](crate::dsl) when compiled with the `feature =
22/// "sqlite"` flag.
23pub mod dsl {
24 #[doc(inline)]
25 pub use super::functions::*;
26}