pub struct Conjunction;Expand description
The SQL type of a condition list — a tuple of conditions combined with AND.
Boolean-like, so a condition list is accepted anywhere a condition is, but
deliberately not Compatible with
itself. A condition list occupies one expression slot rather than one column
slot, and self-incompatibility is what lets APIs that accept either a single
column or a tuple of columns (IN (subquery) row values) tell the two apart.
Trait Implementations§
impl BooleanLike for Conjunction
Source§impl Clone for Conjunction
impl Clone for Conjunction
Source§fn clone(&self) -> Conjunction
fn clone(&self) -> Conjunction
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for Conjunction
impl DataType for Conjunction
Source§impl Debug for Conjunction
impl Debug for Conjunction
Source§impl Default for Conjunction
impl Default for Conjunction
Source§fn default() -> Conjunction
fn default() -> Conjunction
Returns the “default value” for a type. Read more
impl Eq for Conjunction
Source§impl Hash for Conjunction
impl Hash for Conjunction
Source§impl PartialEq for Conjunction
impl PartialEq for Conjunction
impl StructuralPartialEq for Conjunction
Auto Trait Implementations§
impl Freeze for Conjunction
impl RefUnwindSafe for Conjunction
impl Send for Conjunction
impl Sync for Conjunction
impl Unpin for Conjunction
impl UnsafeUnpin for Conjunction
impl UnwindSafe for Conjunction
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more