[][src]Struct postgres_parser::sys::NullTest

#[repr(C)]pub struct NullTest {
    pub xpr: Expr,
    pub arg: *mut Expr,
    pub nulltesttype: NullTestType,
    pub argisrow: bool,
    pub location: c_int,
}

Fields

xpr: Exprarg: *mut Exprnulltesttype: NullTestType

input expression

argisrow: bool

IS NULL, IS NOT NULL

location: c_int

T to perform fieldbyfield null checks

Trait Implementations

impl Debug for NullTest[src]

impl Default for NullTest[src]

impl Eq for NullTest[src]

impl Hash for NullTest[src]

impl PartialEq<NullTest> for NullTest[src]

impl StructuralEq for NullTest[src]

impl StructuralPartialEq for NullTest[src]

Auto Trait Implementations

impl RefUnwindSafe for NullTest

impl !Send for NullTest

impl !Sync for NullTest

impl Unpin for NullTest

impl UnwindSafe for NullTest

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.