pub struct SubqueryExpr {
pub id: SubqueryId,
pub negated: bool,
}Expand description
Correlated subquery used within a predicate expression.
Fields§
§id: SubqueryIdIdentifier referencing the subquery definition attached to the parent filter.
negated: boolTrue when the SQL contained NOT EXISTS.
Trait Implementations§
Source§impl Clone for SubqueryExpr
impl Clone for SubqueryExpr
Source§fn clone(&self) -> SubqueryExpr
fn clone(&self) -> SubqueryExpr
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SubqueryExpr
impl RefUnwindSafe for SubqueryExpr
impl Send for SubqueryExpr
impl Sync for SubqueryExpr
impl Unpin for SubqueryExpr
impl UnwindSafe for SubqueryExpr
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