pub enum InSet {
List(Vec<Expr>),
Subquery(Box<SelectStatement>),
Table(QualifiedName),
}Expand description
The set of values for an IN expression.
Variants§
List(Vec<Expr>)
IN (expr, expr, ...)
Subquery(Box<SelectStatement>)
IN (SELECT ...)
Table(QualifiedName)
IN table_name — shorthand for IN (SELECT * FROM table_name).
Trait Implementations§
impl StructuralPartialEq for InSet
Auto Trait Implementations§
impl Freeze for InSet
impl RefUnwindSafe for InSet
impl Send for InSet
impl Sync for InSet
impl Unpin for InSet
impl UnsafeUnpin for InSet
impl UnwindSafe for InSet
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