( &mut self, event: I::PointerMotionEvent, )
| 211 | } |
| 212 | |
| 213 | pub fn pointer_motion<I: InputBackend>( |
| 214 | &mut self, |
| 215 | event: I::PointerMotionEvent, |
| 216 | ) -> anyhow::Result<()> { |
| 217 | self.comp.borrow_mut().pointer_motion::<I>(event)?; |
| 218 | |
| 219 | Ok(()) |
| 220 | } |
| 221 | |
| 222 | pub fn pointer_motion_absolute<I: InputBackend>( |
| 223 | &mut self, |
nothing calls this directly
no outgoing calls
no test coverage detected