Trait diesel::sql_types::ops::Add

source ·
pub trait Add {
    type Rhs: SqlType;
    type Output: SqlType;
}
Expand description

Represents SQL types which can be added.

Required Associated Types§

source

type Rhs: SqlType

The SQL type which can be added to this one

source

type Output: SqlType

The SQL type of the result of adding Rhs to Self

Implementors§