pub enum SetOp {
Union,
Except,
Intersect,
}Expand description
Variants§
Union
Combines results from multiple queries, including duplicates.
Except
Returns rows from the first query that are not in the second.
Intersect
Returns only rows common to both queries.
Trait Implementations§
impl Copy 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 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