Trait rin::prelude::WindowEvents [−][src]
pub trait WindowEvents<'a> {
pub fn resized(
self
) -> Stream<'a, Matrix<i32, U2, U1, <DefaultAllocator as Allocator<i32, U2, U1>>::Buffer>>;
pub fn moved(self) -> Stream<'a, Point<i32, U2>>;
pub fn closing(self) -> Stream<'a, bool>;
}Required methods
pub fn resized(
self
) -> Stream<'a, Matrix<i32, U2, U1, <DefaultAllocator as Allocator<i32, U2, U1>>::Buffer>>[src]
self
) -> Stream<'a, Matrix<i32, U2, U1, <DefaultAllocator as Allocator<i32, U2, U1>>::Buffer>>
Selects only the window resized event
pub fn moved(self) -> Stream<'a, Point<i32, U2>>[src]
Selects only the window moved event
pub fn closing(self) -> Stream<'a, bool>[src]
Selects only the window closing event
Implementors
Loading content...