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 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 moreSource§impl Debug for InSubquery
impl Debug for InSubquery
Source§impl<'de> Deserialize<'de> for InSubquery
impl<'de> Deserialize<'de> for InSubquery
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
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§impl Serialize for InSubquery
impl Serialize for InSubquery
impl Eq for InSubquery
impl StructuralPartialEq for InSubquery
Auto Trait Implementations§
impl Freeze for InSubquery
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