Trait diesel::sql_types::ops::Mul

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

Represents SQL types which can be multiplied.

Required Associated Types§

source

type Rhs: SqlType

The SQL type which this can be multiplied by

source

type Output: SqlType

The SQL type of the result of multiplying Self by Rhs

Implementors§