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