pub trait ApplicationWindowExt: IsA<ApplicationWindow> + 'static {
// Provided methods
fn help_overlay(&self) -> Option<ShortcutsWindow> { ... }
fn id(&self) -> u32 { ... }
fn shows_menubar(&self) -> bool { ... }
fn set_help_overlay(&self, help_overlay: Option<&ShortcutsWindow>) { ... }
fn set_show_menubar(&self, show_menubar: bool) { ... }
fn connect_show_menubar_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
}Provided Methods§
fn help_overlay(&self) -> Option<ShortcutsWindow>
👎Deprecated: Since 4.18
fn id(&self) -> u32
fn set_help_overlay(&self, help_overlay: Option<&ShortcutsWindow>)
👎Deprecated: Since 4.18
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.