pub trait EventHandler: Fn(Event, WindowHandle, i32, i32, u32, u32) + Sync + Send { }
Expand description

Signature of the Event Hook callback function.

Implementors§

source§

impl<T> EventHandler for Twhere T: Fn(Event, WindowHandle, i32, i32, u32, u32) + Sync + Send,