pub trait WindowImplExt: Sealed + ObjectSubclass {
// Provided methods
fn parent_activate_focus(&self) { ... }
fn parent_activate_default(&self) { ... }
fn parent_keys_changed(&self) { ... }
fn parent_enable_debugging(&self, toggle: bool) -> bool { ... }
fn parent_close_request(&self) -> Propagation { ... }
}
Provided Methods§
fn parent_activate_focus(&self)
fn parent_activate_default(&self)
fn parent_keys_changed(&self)
fn parent_enable_debugging(&self, toggle: bool) -> bool
fn parent_close_request(&self) -> Propagation
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.