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