pub struct IsNull {
pub this: Expression,
pub not: bool,
pub postfix_form: bool,
}Expand description
IS NULL predicate
Fields§
§this: Expression§not: bool§postfix_form: boolWhether this was the postfix form (ISNULL/NOTNULL) vs standard (IS NULL/IS NOT NULL)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for IsNull
impl<'de> Deserialize<'de> for IsNull
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 IsNull
Auto Trait Implementations§
impl Freeze for IsNull
impl RefUnwindSafe for IsNull
impl Send for IsNull
impl Sync for IsNull
impl Unpin for IsNull
impl UnwindSafe for IsNull
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