Trait lrs::ops::Rem

Objects that implement the binary % operator.

Syntax

trait Rem<RHS = Self> {
    type Output;

    /* Required methods */
    fn rem(self, rhs: RHS) -> <Self as Rem<RHS>>::Output
}

Associated types

NameDescription
Output

The output of the operator.

Methods

ReceiverNameDescription
selfrem

The method that will be called by the operator.