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

pub trait Mul {
    type Rhs;
    type Output;
}

Represents SQL types which can be multiplied.

Associated Types

type Rhs[src]

The SQL type which this can be multiplied by

type Output[src]

The SQL type of the result of multiplying Self by Rhs

Loading content...

Implementors

impl Mul for BigInt[src]

type Rhs = BigInt

type Output = BigInt

impl Mul for Double[src]

type Rhs = Double

type Output = Double

impl Mul for Float[src]

type Rhs = Float

type Output = Float

impl Mul for Integer[src]

type Rhs = Integer

type Output = Integer

impl Mul for Interval[src]

type Rhs = Integer

type Output = Interval

impl Mul for Numeric[src]

type Rhs = Numeric

type Output = Numeric

impl Mul for SmallInt[src]

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

type Rhs = Nullable<T::Rhs>

type Output = Nullable<T::Output>

Loading content...