pub enum SetOpKind {
Union,
Except,
Intersect,
}Expand description
Which set operation.
Variants§
Union
Rows from either side.
Except
Rows from the left that are not on the right.
Intersect
Rows on both sides.
Implementations§
Trait Implementations§
impl Copy for SetOpKind
impl Eq for SetOpKind
impl StructuralPartialEq for SetOpKind
Auto Trait Implementations§
impl Freeze for SetOpKind
impl RefUnwindSafe for SetOpKind
impl Send for SetOpKind
impl Sync for SetOpKind
impl Unpin for SetOpKind
impl UnsafeUnpin for SetOpKind
impl UnwindSafe for SetOpKind
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