pub trait WindowImpl: WindowImplExt + WidgetImpl {
    fn activate_focus(&self, window: &Self::Type) { ... }
    fn activate_default(&self, window: &Self::Type) { ... }
    fn keys_changed(&self, window: &Self::Type) { ... }
    fn enable_debugging(&self, window: &Self::Type, toggle: bool) -> bool { ... }
    fn close_request(&self, window: &Self::Type) -> Inhibit { ... }
}

Provided methods

Implementors