( &mut self, event: I::PointerMotionAbsoluteEvent, )
| 220 | } |
| 221 | |
| 222 | pub fn pointer_motion_absolute<I: InputBackend>( |
| 223 | &mut self, |
| 224 | event: I::PointerMotionAbsoluteEvent, |
| 225 | ) -> anyhow::Result<()> { |
| 226 | self.comp.borrow_mut().pointer_motion_absolute::<I>(event)?; |
| 227 | |
| 228 | Ok(()) |
| 229 | } |
| 230 | |
| 231 | pub fn pointer_button<I: InputBackend>( |
| 232 | &mut self, |
nothing calls this directly
no outgoing calls
no test coverage detected