pub enum SetOp {
Union,
Intersect,
Except,
}Expand description
Which set operation combines two queries.
Variants§
Union
UNION — rows of either.
Intersect
INTERSECT — rows of both. Binds tighter than UNION and EXCEPT.
Except
EXCEPT — rows of the left that are not in the right.
Implementations§
Trait Implementations§
impl Copy for SetOp
impl Eq for SetOp
impl StructuralPartialEq for SetOp
Auto Trait Implementations§
impl Freeze for SetOp
impl RefUnwindSafe for SetOp
impl Send for SetOp
impl Sync for SetOp
impl Unpin for SetOp
impl UnsafeUnpin for SetOp
impl UnwindSafe for SetOp
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