pub trait WindowGroupExt: 'static {
// Required methods
fn add_window<P: IsA<Window>>(&self, window: &P);
fn get_current_device_grab(&self, device: &Device) -> Option<Widget>;
fn get_current_grab(&self) -> Option<Widget>;
fn list_windows(&self) -> Vec<Window>;
fn remove_window<P: IsA<Window>>(&self, window: &P);
}
Required Methods§
fn add_window<P: IsA<Window>>(&self, window: &P)
fn get_current_device_grab(&self, device: &Device) -> Option<Widget>
fn get_current_grab(&self) -> Option<Widget>
fn list_windows(&self) -> Vec<Window>
fn remove_window<P: IsA<Window>>(&self, window: &P)
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.