Struct sql_from_models_parser::ast::InSubquery
source · pub struct InSubquery {
pub expr: Box<Expr>,
pub subquery: Box<Query>,
pub negated: bool,
}
Expand description
[ NOT ] IN (SELECT ...)
Fields§
§expr: Box<Expr>
§subquery: Box<Query>
§negated: bool
Trait Implementations§
source§impl Clone for InSubquery
impl Clone for InSubquery
source§fn clone(&self) -> InSubquery
fn clone(&self) -> InSubquery
Returns a copy 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 moresource§impl Debug for InSubquery
impl Debug for InSubquery
source§impl Display for InSubquery
impl Display for InSubquery
source§impl Hash for InSubquery
impl Hash for InSubquery
source§impl PartialEq for InSubquery
impl PartialEq for InSubquery
source§fn eq(&self, other: &InSubquery) -> bool
fn eq(&self, other: &InSubquery) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for InSubquery
impl StructuralPartialEq for InSubquery
Auto Trait Implementations§
impl RefUnwindSafe for InSubquery
impl Send for InSubquery
impl Sync for InSubquery
impl Unpin for InSubquery
impl UnwindSafe for InSubquery
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