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