( &mut self, event: I::PointerButtonEvent, )
| 229 | } |
| 230 | |
| 231 | pub fn pointer_button<I: InputBackend>( |
| 232 | &mut self, |
| 233 | event: I::PointerButtonEvent, |
| 234 | ) -> anyhow::Result<()> { |
| 235 | self.comp.borrow_mut().pointer_button::<I>(event)?; |
| 236 | |
| 237 | Ok(()) |
| 238 | } |
| 239 | |
| 240 | pub fn pointer_axis<I: InputBackend>( |
| 241 | &mut self, |
nothing calls this directly
no outgoing calls
no test coverage detected