pub trait WindowGroupExt:
IsA<WindowGroup>
+ Sealed
+ 'static {
// Provided methods
fn add_window(&self, window: &impl IsA<Window>) { ... }
fn current_device_grab(&self, device: &Device) -> Option<Widget> { ... }
fn current_grab(&self) -> Option<Widget> { ... }
fn list_windows(&self) -> Vec<Window> { ... }
fn remove_window(&self, window: &impl IsA<Window>) { ... }
}
Provided Methods§
fn add_window(&self, window: &impl IsA<Window>)
fn current_device_grab(&self, device: &Device) -> Option<Widget>
fn current_grab(&self) -> Option<Widget>
fn list_windows(&self) -> Vec<Window>
fn remove_window(&self, window: &impl IsA<Window>)
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.