pub trait GuiSplitterContainerExt<T: HasIDispatch = Self>: HasIDispatch<T> {
// Provided methods
fn is_vertical(&self) -> Result<bool> { ... }
fn sash_position(&self) -> Result<i32> { ... }
fn set_sash_position(&self, value: i32) -> Result<()> { ... }
}Provided Methods§
fn is_vertical(&self) -> Result<bool>
fn sash_position(&self) -> Result<i32>
fn set_sash_position(&self, value: i32) -> Result<()>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".