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

pub trait Add {
    type Rhs;
    type Output;
}

Represents SQL types which can be added.

Associated Types

The SQL type which can be added to this one

The SQL type of the result of adding Rhs to Self

Implementors

impl Add for BigInt
[src]

impl Add for Date
[src]

impl Add for Double
[src]

impl Add for Float
[src]

impl Add for Integer
[src]

impl Add for Interval
[src]

impl Add for Numeric
[src]

impl Add for SmallInt
[src]

impl Add for Time
[src]

impl Add for Timestamp
[src]

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