pub enum SqlSetOp {
Select(SqlSelect),
Query(Box<QueryAst>),
Union(Box<SqlSetOp>, Box<SqlSetOp>, bool),
Minus(Box<SqlSetOp>, Box<SqlSetOp>, bool),
}Expand description
Set operations in the SQL query language
Variants§
Select(SqlSelect)
SELECT
Query(Box<QueryAst>)
ORDER/LIMIT
Union(Box<SqlSetOp>, Box<SqlSetOp>, bool)
UNION
Minus(Box<SqlSetOp>, Box<SqlSetOp>, bool)
EXCEPT
Auto Trait Implementations§
impl Freeze for SqlSetOp
impl RefUnwindSafe for SqlSetOp
impl Send for SqlSetOp
impl Sync for SqlSetOp
impl Unpin for SqlSetOp
impl UnwindSafe for SqlSetOp
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