Trait lrs::ops::Div

Objects that implement the binary / operator.

Syntax

trait Div<RHS = Self> {
    type Output;

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

Associated types

NameDescription
Output

The output of the operator.

Methods

ReceiverNameDescription
selfdiv

The method that will be called by the operator.