We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad8ef47 commit 7b2a829Copy full SHA for 7b2a829
diesel/src/expression/mod.rs
@@ -26,10 +26,11 @@ pub(crate) mod assume_not_null;
26
pub(crate) mod bound;
27
mod coerce;
28
pub(crate) mod count;
29
-#[cfg(not(feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"))]
30
pub(crate) mod exists;
31
#[cfg(feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes")]
32
-pub mod exists;
+use exists as exists_implementation;
+#[cfg(feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes")]
33
+pub mod exists_implementation;
34
pub(crate) mod grouped;
35
pub(crate) mod helper_types;
36
mod not;
0 commit comments