(&self)
| 128 | |
| 129 | impl IRectangle { |
| 130 | pub fn as_rectangle(&self) -> Rectangle { |
| 131 | Rectangle { |
| 132 | x: self.x as f32, |
| 133 | y: self.y as f32, |
| 134 | width: self.width as f32, |
| 135 | height: self.height as f32, |
| 136 | } |
| 137 | } |
| 138 | } |
nothing calls this directly
no outgoing calls
no test coverage detected