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
12/// SQLite specific expression DSL methods.
13///
14/// This module will be glob imported by
15/// [`diesel::dsl`](crate::dsl) when compiled with the `feature =
16/// "sqlite"` flag.
17pub mod dsl {
18    #[doc(inline)]
19    pub use super::functions::*;
20}