Trait conrod::backend::piston::window::EventWindow [] [src]

pub trait EventWindow<E>: BasicWindow {
    fn next(&mut self, events: &mut E) -> Option<Event>;
}

Used to integrate a window with an event loop, enables the window to handle some events, if necessary

Required Methods

receive next event from event loop and handle it

Implementors