Trait diesel::types::ops::Mul
[−]
[src]
pub trait Mul { type Rhs; type Output; }
Associated Types
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;