pub enum QueryBody {
Select(Box<Select>),
SetOperation {
op: SetOperator,
all: bool,
left: Box<QueryBody>,
right: Box<QueryBody>,
},
Parenthesized(Box<Query>),
}Expand description
The body of a query (SELECT, set operations, or subquery).
Variants§
Trait Implementations§
impl StructuralPartialEq for QueryBody
Auto Trait Implementations§
impl Freeze for QueryBody
impl RefUnwindSafe for QueryBody
impl Send for QueryBody
impl Sync for QueryBody
impl Unpin for QueryBody
impl UnwindSafe for QueryBody
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