[][src]Trait diesel::sql_types::Foldable

pub trait Foldable {
    type Sum;
    type Avg;
}

Represents SQL types which can be used with SUM and AVG

Associated Types

The SQL type of sum(this_type)

The SQL type of avg(this_type)

Implementors

impl Foldable for BigInt
[src]

impl Foldable for Double
[src]

impl Foldable for Float
[src]

impl Foldable for Integer
[src]

impl Foldable for Interval
[src]

impl Foldable for Numeric
[src]

impl Foldable for SmallInt
[src]

impl<T> Foldable for Nullable<T> where
    T: Foldable + NotNull
[src]