Function get_all

Source
pub fn get_all() -> impl Iterator<Item = WindowHandle>
Expand description

Gets handles to all windows.

ยงExamples

for win in window::get_all() {
    println!("{}", win.title());
}