pub trait Gesture: Bind {
type Body: Gesture = NeverGesture;
// Provided methods
fn body(&self) -> Self::Body { ... }
fn fire(&self, event: &GestureEvent, event_path: &IdPath, context: &Context) { ... }
fn render(&self, context: &Context) -> GestureNode { ... }
}Expand description
A composable gesture.