(&mut self, event: Event)
| 86 | } |
| 87 | |
| 88 | fn handle_event(&mut self, event: Event) { |
| 89 | for child in &mut self.children { |
| 90 | child.handle_event(event); |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | fn bounds(&self) -> Rect { |
| 95 | self.bounds |
nothing calls this directly
no outgoing calls
no test coverage detected