Objects that implement the binary % operator.
trait Rem<RHS = Self> {
type Output;
/* Required methods */
fn rem(self, rhs: RHS) -> <Self as Rem<RHS>>::Output
}| Name | Description |
|---|---|
| Output | The output of the operator. |
| Receiver | Name | Description |
|---|---|---|
self | rem | The method that will be called by the operator. |