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
Available on crate feature v4_22 only.
fn save_state(&self, state: &VariantDict) -> bool
v4_22 only.Class closure for the save-state signal.
§dict
a dictionary where to store the window’s 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", so this trait is not object safe.