Trait nannou::event::LoopEvent [] [src]

pub trait LoopEvent: From<Update> {
    fn from_glutin_event(_: Event, _: &App) -> Option<Self>;
}

Event types that are compatible with the nannou app loop.

Required Methods

Produce a loop event from the given glutin event.

Implementors