Trait diesel::sql_types::ops::Div

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

Represents SQL types which can be divided.

Required Associated Types§

source

type Rhs: SqlType

The SQL type which this one can be divided by

source

type Output: SqlType

The SQL type of the result of dividing Self by Rhs

Implementors§