pub trait SummableSqlExpression<S: SelectableTables>: SqlExpression<S>where
Self::SqlType: SummableSqlType,{
// Provided method
fn sum(self) -> SqlSum<S, Self> { ... }
}Expand description
An sql expression which is summable, which means that we can sum the values of it.
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.