pub struct UnionStatement {
pub left: Query,
pub right: Query,
pub all: bool,
}Expand description
UNION statement — combines results from two queries.
Fields§
§left: Query§right: Query§all: boolTrait Implementations§
Source§impl Clone for UnionStatement
impl Clone for UnionStatement
Source§fn clone(&self) -> UnionStatement
fn clone(&self) -> UnionStatement
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for UnionStatement
impl Debug for UnionStatement
Source§impl PartialEq for UnionStatement
impl PartialEq for UnionStatement
impl StructuralPartialEq for UnionStatement
Auto Trait Implementations§
impl Freeze for UnionStatement
impl RefUnwindSafe for UnionStatement
impl Send for UnionStatement
impl Sync for UnionStatement
impl Unpin for UnionStatement
impl UnsafeUnpin for UnionStatement
impl UnwindSafe for UnionStatement
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