(&mut self, width: u32, height: u32)
| 82 | } |
| 83 | |
| 84 | pub fn resize(&mut self, width: u32, height: u32) { |
| 85 | self.width = width; |
| 86 | self.height = height; |
| 87 | } |
| 88 | |
| 89 | pub fn dimensions(&self) -> (u32, u32) { |
| 90 | (self.width, self.height) |
nothing calls this directly
no outgoing calls
no test coverage detected