(self, rhs: Vec2)
| 106 | |
| 107 | fn add(self, rhs: Vec2) -> Self { |
| 108 | Self { |
| 109 | x: self.x + rhs.x, |
| 110 | y: self.y + rhs.y, |
| 111 | } |
| 112 | } |
| 113 | } |
| 114 | impl core::ops::Sub<Vec2> for Vec2 { |
| 115 | type Output = Self; |
| 116 |
nothing calls this directly
no outgoing calls
no test coverage detected