pub trait ApplicationWindowImpl:
WindowImpl
+ ObjectSubclass<Type: IsA<ApplicationWindow> + IsA<ActionGroup> + IsA<ActionMap>>
+ 'static {
// Provided method
fn save_state(&self, state: &VariantDict) -> bool { ... }
}Provided Methods§
Sourcefn save_state(&self, state: &VariantDict) -> bool
fn save_state(&self, state: &VariantDict) -> bool
Class closure for the save-state signal.
§dict
a dictionary to populate with application window state
§Returns
true to stop stop further handlers from running
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".