pub trait WindowImpl: WindowImplExt + WidgetImpl {
    // Provided methods
    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§

source

fn activate_focus(&self, window: &Self::Type)

source

fn activate_default(&self, window: &Self::Type)

source

fn keys_changed(&self, window: &Self::Type)

source

fn enable_debugging(&self, window: &Self::Type, toggle: bool) -> bool

source

fn close_request(&self, window: &Self::Type) -> Inhibit

Implementors§