[][src]Trait diesel::sql_types::ops::Mul

pub trait Mul {
    type Rhs;
    type Output;
}

Represents SQL types which can be multiplied.

Associated Types

The SQL type which this can be multiplied by

The SQL type of the result of multiplying Self by Rhs

Implementors

impl Mul for BigInt
[src]

impl Mul for Double
[src]

impl Mul for Float
[src]

impl Mul for Integer
[src]

impl Mul for Interval
[src]

impl Mul for Numeric
[src]

impl Mul for SmallInt
[src]

impl<T> Mul for Nullable<T> where
    T: Mul + NotNull,
    T::Rhs: NotNull,
    T::Output: NotNull
[src]