pub enum SubqueryKind {
Exists,
Scalar,
In,
}Expand description
What a nested query used as a value does with its rows.
Variants§
Exists
EXISTS (...): true when the block produced a row.
Scalar
(SELECT ...) in a value position: the first row’s first column, or
NULL when it produced nothing.
In
The right side of an IN.
Trait Implementations§
Source§impl Clone for SubqueryKind
impl Clone for SubqueryKind
impl Copy for SubqueryKind
Source§impl Debug for SubqueryKind
impl Debug for SubqueryKind
impl Eq for SubqueryKind
Source§impl PartialEq for SubqueryKind
impl PartialEq for SubqueryKind
impl StructuralPartialEq for SubqueryKind
Auto Trait Implementations§
impl Freeze for SubqueryKind
impl RefUnwindSafe for SubqueryKind
impl Send for SubqueryKind
impl Sync for SubqueryKind
impl Unpin for SubqueryKind
impl UnsafeUnpin for SubqueryKind
impl UnwindSafe for SubqueryKind
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