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

pub trait Div {
    type Rhs;
    type Output;
}

Represents SQL types which can be divided.

Associated Types

The SQL type which this one can be divided by

The SQL type of the result of dividing Self by Rhs

Implementors

impl Div for BigInt
[src]

impl Div for Double
[src]

impl Div for Float
[src]

impl Div for Integer
[src]

impl Div for Interval
[src]

impl Div for Numeric
[src]

impl Div for SmallInt
[src]

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