Trait partiql_value::NullableEq

source ·
pub trait NullableEq {
    type Output;

    // Required methods
    fn eq(&self, rhs: &Self) -> Self::Output;
    fn neq(&self, rhs: &Self) -> Self::Output;
}

Required Associated Types§

Required Methods§

source

fn eq(&self, rhs: &Self) -> Self::Output

source

fn neq(&self, rhs: &Self) -> Self::Output

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<'a, const GROUP_NULLS: bool> NullableEq for EqualityValue<'a, GROUP_NULLS, Value>