Skip to main content

HasAggStatus

Trait HasAggStatus 

Source
pub trait HasAggStatus {
    type Status;
}
Expand description

Extract the aggregate status of a type that appears in a SELECT list.

Implemented for column ZSTs (always Scalar), SQLExpr, and expression wrappers.

Required Associated Types§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<E: HasAggStatus> HasAggStatus for AliasedExpr<E>

Source§

impl<V, T, N, A> HasAggStatus for SQLExpr<'_, V, T, N, A>