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

pub trait Sub {
    type Rhs;
    type Output;
}

Represents SQL types which can be subtracted.

Associated Types

The SQL type which can be subtracted from this one

The SQL type of the result of subtracting Rhs from Self

Implementors

impl Sub for BigInt
[src]

impl Sub for Date
[src]

impl Sub for Double
[src]

impl Sub for Float
[src]

impl Sub for Integer
[src]

impl Sub for Interval
[src]

impl Sub for Numeric
[src]

impl Sub for SmallInt
[src]

impl Sub for Time
[src]

impl Sub for Timestamp
[src]

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