(&mut self, event: Event)
| 73 | } |
| 74 | |
| 75 | fn handle_event(&mut self, event: Event) { |
| 76 | for child in &mut self.children { |
| 77 | child.handle_event(event.clone()); |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | fn bounds(&self) -> Rect { |
| 82 | self.bounds.clone() |
nothing calls this directly
no outgoing calls
no test coverage detected