Trait diesel::types::ops::Div
[−]
[src]
pub trait Div { type Rhs; type Output; }
Associated Types
Implementors
impl Div for SmallInt type Rhs = SmallInt; type Output = SmallInt;
impl Div for Integer type Rhs = Integer; type Output = Integer;
impl Div for BigInt type Rhs = BigInt; type Output = BigInt;
impl Div for Float type Rhs = Float; type Output = Float;
impl Div for Double type Rhs = Double; type Output = Double;
impl Div for Numeric type Rhs = Numeric; type Output = Numeric;