pub struct UnionExpr {
pub left: Box<Statement>,
pub right: Box<Statement>,
pub all: bool,
}Expand description
User filter .age > 30 union User filter .status = "vip"
Fields§
§left: Box<Statement>§right: Box<Statement>§all: booltrue for union all (keep duplicates), false for union (deduplicate).
Trait Implementations§
impl StructuralPartialEq for UnionExpr
Auto Trait Implementations§
impl Freeze for UnionExpr
impl RefUnwindSafe for UnionExpr
impl Send for UnionExpr
impl Sync for UnionExpr
impl Unpin for UnionExpr
impl UnsafeUnpin for UnionExpr
impl UnwindSafe for UnionExpr
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