Trait rinwindow::events::KeyEvents[][src]

pub trait KeyEvents<'a> {
    fn pressed<K: Into<Key>>(self, k: K) -> Stream<'a, Key>;
fn released<K: Into<Key>>(self, k: K) -> Stream<'a, Key>;
fn pressed_any(self) -> Stream<'a, Key>;
fn released_any(self) -> Stream<'a, Key>;
fn character(self, c: char) -> Stream<'a, char>;
fn character_any(self) -> Stream<'a, char>;
fn is_pressed<K: Into<Key> + 'a>(self, k: K) -> Stream<'a, bool>; }

Required Methods

Implementors