| 11 | } |
| 12 | |
| 13 | pub struct GestureRecognizer { |
| 14 | tap_timeout: Duration, |
| 15 | long_press_timeout: Duration, |
| 16 | double_tap_timeout: Duration, |
| 17 | handlers: Vec<Box<dyn Fn(GestureEvent)>>, |
| 18 | } |
| 19 | |
| 20 | impl GestureRecognizer { |
| 21 | pub fn new() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected