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".

Implementations on Foreign Types§

Source§

impl<T: HasAggStatus + ?Sized> HasAggStatus for &T

Implementors§

Source§

impl<E, Name> HasAggStatus for NamedExpr<E, Name>
where E: HasAggStatus,

Source§

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

Source§

impl<Name, Output> HasAggStatus for DerivedField<Name, Output>
where Name: Tag, Output: ProjectionOutput,

Source§

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