Trait diesel::sql_types::ops::Mul [−][src]
Represents SQL types which can be multiplied.
Associated Types
type Rhs
The SQL type which this can be multiplied by
type Output
The SQL type of the result of multiplying Self
by Rhs
Implementors
impl Mul for SmallInt type Rhs = SmallInt; type Output = SmallInt;
impl Mul for Integer type Rhs = Integer; type Output = Integer;
impl Mul for BigInt type Rhs = BigInt; type Output = BigInt;
impl Mul for Float type Rhs = Float; type Output = Float;
impl Mul for Double type Rhs = Double; type Output = Double;
impl Mul for Numeric type Rhs = Numeric; type Output = Numeric;
impl Mul for Interval type Rhs = Integer; type Output = Interval;
impl<T> Mul for Nullable<T> where
T: Mul + NotNull,
T::Rhs: NotNull,
T::Output: NotNull, type Rhs = Nullable<T::Rhs>; type Output = Nullable<T::Output>;