Trait lrs::ops::Sub

Objects that implement the binary - operator.

Syntax

trait Sub<RHS = Self> {
    type Output;

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

Associated types

NameDescription
Output

The output of the operator.

Methods

ReceiverNameDescription
selfsub

The method that will be called by the operator.