pub trait MultiTouchClient {
    // Required method
    fn touch_events(&self, touch_events: &[TouchEvent], len: usize);
}
Expand description

The multi touch client

Required Methods§

source

fn touch_events(&self, touch_events: &[TouchEvent], len: usize)

Report a multi touch event num touches represents the number of touches detected

Implementors§