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