(self, rhs: Self)
| 108 | type Output = Self; |
| 109 | |
| 110 | fn shr(self, rhs: Self) -> Self::Output { |
| 111 | binary_expr(self, Operator::BitwiseShiftRight, rhs) |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | /// Support `- <expr>` fluent style |
nothing calls this directly
no test coverage detected