Trait rin_window::events::WindowEvents [−][src]
pub trait WindowEvents<'a> {
fn resized(self) -> Stream<'a, Vec2<i32>>;
fn moved(self) -> Stream<'a, Pnt2<i32>>;
fn closing(self) -> Stream<'a, bool>;
}Required methods
fn resized(self) -> Stream<'a, Vec2<i32>>[src]
Selects only the window resized event
fn moved(self) -> Stream<'a, Pnt2<i32>>[src]
Selects only the window moved event
fn closing(self) -> Stream<'a, bool>[src]
Selects only the window closing event
Implementors
Loading content...