pub trait Foldable: SingleValue {
type Sum: SqlType + SingleValue;
type Avg: SqlType + SingleValue;
}
Expand description
Represents SQL types which can be used with SUM
and AVG
Required Associated Types§
sourcetype Sum: SqlType + SingleValue
type Sum: SqlType + SingleValue
The SQL type of sum(this_type)
sourcetype Avg: SqlType + SingleValue
type Avg: SqlType + SingleValue
The SQL type of avg(this_type)