Structs§
- BinOp
Args - Arguments for the macro
#[binop(...)] - BinOpFn
- Method implementation for a binary operation:
fn op(self, rhs: B) -> C { .. } - BinOp
Impl - An impl block for a binary operation.
- BinOp
Output - Type definition for the output of a binary operation:
type Output = C;