diesel::sql_types::ops

Trait 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§