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

pub trait Div {
    type Rhs;
    type Output;
}

Represents SQL types which can be divided.

Associated Types

type Rhs

The SQL type which this one can be divided by

type Output

The SQL type of the result of dividing Self by Rhs

Loading content...

Implementors

impl Div for BigInt[src]

type Rhs = BigInt

type Output = BigInt

impl Div for Double[src]

type Rhs = Double

type Output = Double

impl Div for Float[src]

type Rhs = Float

type Output = Float

impl Div for Integer[src]

type Rhs = Integer

type Output = Integer

impl Div for Interval[src]

type Rhs = Integer

type Output = Interval

impl Div for Numeric[src]

type Rhs = Numeric

type Output = Numeric

impl Div for SmallInt[src]

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

type Rhs = Nullable<T::Rhs>

type Output = Nullable<T::Output>

Loading content...