Trait diesel::sql_types::ops::Add [−][src]
Represents SQL types which can be added.
Associated Types
type Rhs
The SQL type which can be added to this one
type Output
The SQL type of the result of adding Rhs
to Self
Implementors
impl Add for SmallInt type Rhs = SmallInt; type Output = SmallInt;
impl Add for Integer type Rhs = Integer; type Output = Integer;
impl Add for BigInt type Rhs = BigInt; type Output = BigInt;
impl Add for Float type Rhs = Float; type Output = Float;
impl Add for Double type Rhs = Double; type Output = Double;
impl Add for Numeric type Rhs = Numeric; type Output = Numeric;
impl Add for Time type Rhs = Interval; type Output = Time;
impl Add for Date type Rhs = Interval; type Output = Timestamp;
impl Add for Timestamp type Rhs = Interval; type Output = Timestamp;
impl Add for Interval type Rhs = Interval; type Output = Interval;
impl<T> Add for Nullable<T> where
T: Add + NotNull,
T::Rhs: NotNull,
T::Output: NotNull, type Rhs = Nullable<T::Rhs>; type Output = Nullable<T::Output>;impl Add for Timestamptz type Rhs = Interval; type Output = Timestamptz;