Trait rinwindow::events::Events[][src]

pub trait Events<'a> {
    fn keys(self) -> Stream<'a, KeyEvent>;
fn mouse(self) -> Stream<'a, MouseEvent>;
fn window(self) -> Stream<'a, WindowEvent>;
fn update(self) -> Stream<'a, f64>;
fn dropped(self) -> Stream<'a, Vec<PathBuf>>;
fn benchmark(self) -> (Stream<'a, Event>, Stream<'a, Duration>); }

Required Methods

Implementors