pub trait Div {
type Rhs: SqlType;
type Output: SqlType;
}
Expand description
Represents SQL types which can be divided.
The SQL type which this one can be divided by
The SQL type of the result of dividing Self
by Rhs
source§Available on crate feature mysql_backend
only.