pub trait GuiUserAreaExt<T: HasIDispatch = Self>: HasIDispatch<T> {
// Provided methods
fn horizontal_scrollbar(&self) -> Result<GuiComponent> { ... }
fn is_otf_preview(&self) -> Result<bool> { ... }
fn vertical_scrollbar(&self) -> Result<GuiComponent> { ... }
fn find_by_label(&self, p0: String, p1: String) -> Result<GuiComponent> { ... }
fn list_navigate(&self, p0: String) -> Result<()> { ... }
}Provided Methods§
fn horizontal_scrollbar(&self) -> Result<GuiComponent>
fn is_otf_preview(&self) -> Result<bool>
fn vertical_scrollbar(&self) -> Result<GuiComponent>
fn find_by_label(&self, p0: String, p1: String) -> Result<GuiComponent>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".