(self, rhs: Self)
| 115 | impl ops::Add for StrSize { |
| 116 | type Output = Self; |
| 117 | fn add(self, rhs: Self) -> Self::Output { |
| 118 | Self { |
| 119 | bytes: self.bytes + rhs.bytes, |
| 120 | chars: self.chars + rhs.chars, |
| 121 | } |
| 122 | } |
| 123 | } |
| 124 | |
| 125 | impl ops::AddAssign for StrSize { |
no outgoing calls
no test coverage detected