Trait rbatis_codegen::ops::Div

source ·
pub trait Div<Rhs = Self> {
    type Output;

    fn op_div(self, rhs: Rhs) -> Self::Output;
}

Required Associated Types§

The resulting type after applying the / operator.

Required Methods§

Performs the / operation.

Example
assert_eq!(12 / 2, 6);

Implementations on Foreign Types§

Implementors§