Trait expr::scalar::func::EagerUnaryFunc[][src]

trait EagerUnaryFunc<'a> {
    type Input: DatumType<'a, EvalError>;
    type Output: DatumType<'a, EvalError>;
    fn call(&self, input: Self::Input) -> Self::Output;
fn output_type(&self, input_type: ColumnType) -> ColumnType; fn propagates_nulls(&self) -> bool { ... }
fn introduces_nulls(&self) -> bool { ... }
fn preserves_uniqueness(&self) -> bool { ... } }
Expand description

A description of an SQL unary function that operates on eagerly evaluated expressions

Associated Types

Required methods

The output ColumnType of this function

Provided methods

Whether this function will produce NULL on NULL input

Whether this function will produce NULL on non-NULL input

Whether this function preserves uniqueness

Implementors