pub trait WindowPropertiesExt:
IsA<WindowProperties>
+ Sealed
+ 'static {
// Provided methods
fn is_fullscreen(&self) -> bool { ... }
fn geometry(&self) -> Rectangle { ... }
fn is_locationbar_visible(&self) -> bool { ... }
fn is_menubar_visible(&self) -> bool { ... }
fn is_resizable(&self) -> bool { ... }
fn is_scrollbars_visible(&self) -> bool { ... }
fn is_statusbar_visible(&self) -> bool { ... }
fn is_toolbar_visible(&self) -> bool { ... }
}
Provided Methods§
fn is_fullscreen(&self) -> bool
fn geometry(&self) -> Rectangle
fn is_locationbar_visible(&self) -> bool
fn is_resizable(&self) -> bool
fn is_scrollbars_visible(&self) -> bool
fn is_statusbar_visible(&self) -> bool
fn is_toolbar_visible(&self) -> bool
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.