Trait rbatis::Rem[][src]

pub trait Rem<Rhs = Self> {
    type Output;
    fn op_rem(self, rhs: Rhs) -> Self::Output;
}

Associated Types

The resulting type after applying the % operator.

Required methods

Performs the % operation.

Example
assert_eq!(12 % 10, 2);

Implementations on Foreign Types

Implementors