pub struct Exists {
pub this: Expression,
pub not: bool,
}Expand description
Represent an EXISTS predicate (EXISTS (SELECT ...) or NOT EXISTS (...)).
Fields§
§this: ExpressionThe subquery expression.
not: boolWhether this is NOT EXISTS.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Exists
impl<'de> Deserialize<'de> for Exists
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
impl StructuralPartialEq for Exists
Auto Trait Implementations§
impl Freeze for Exists
impl RefUnwindSafe for Exists
impl Send for Exists
impl Sync for Exists
impl Unpin for Exists
impl UnwindSafe for Exists
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