diesel 2.3.9

A safe, extensible ORM and Query Builder for PostgreSQL, SQLite, and MySQL
Documentation
//! Adds various methods to construct new expressions. These traits are exported
//! by default, and implemented automatically.
//!
//! You can rely on the methods provided by this trait existing on any
//! `Expression` of the appropriate type. You should not rely on the specific
//! traits existing, their names, or their organization.
mod bool_expression_methods;
mod eq_all;
mod escape_expression_methods;
mod global_expression_methods;
mod text_expression_methods;

#[doc(inline)]
pub use self::bool_expression_methods::{BoolExpressionMethods, PreferredBoolSqlType};
#[doc(hidden)]
pub use self::eq_all::EqAll;
#[doc(inline)]
pub use self::escape_expression_methods::EscapeExpressionMethods;
#[doc(inline)]
pub use self::global_expression_methods::{ExpressionMethods, NullableExpressionMethods};
#[doc(inline)]
pub use self::text_expression_methods::TextExpressionMethods;
#[doc(inline)]
pub use crate::expression::functions::aggregate_expressions::frame_clause::FrameBoundDsl;
#[doc(inline)]
pub use crate::expression::functions::aggregate_expressions::frame_clause::FrameClauseDsl;
#[doc(inline)]
pub use crate::expression::functions::aggregate_expressions::frame_clause::{
    FrameClauseEndBound, FrameClauseExclusion, FrameClauseStartBound, OffsetFollowing,
    OffsetPreceding,
};
#[doc(inline)]
pub use crate::expression::functions::aggregate_expressions::AggregateExpressionMethods;
#[doc(inline)]
pub use crate::expression::functions::aggregate_expressions::WindowExpressionMethods;

#[cfg(feature = "postgres_backend")]
#[doc(inline)]
pub use crate::pg::expression::expression_methods::*;

#[cfg(feature = "sqlite")]
#[doc(inline)]
pub use crate::sqlite::expression::expression_methods::*;