pub trait GuiSimpleContainerExt<T: HasIDispatch = Self>: HasIDispatch<T> {
// Provided methods
fn is_list_element(&self) -> Result<bool> { ... }
fn is_step_loop(&self) -> Result<bool> { ... }
fn is_step_loop_in_table_structure(&self) -> Result<bool> { ... }
fn loop_col_count(&self) -> Result<i32> { ... }
fn loop_current_col(&self) -> Result<i32> { ... }
fn loop_current_col_count(&self) -> Result<i32> { ... }
fn loop_current_row(&self) -> Result<i32> { ... }
fn loop_row_count(&self) -> Result<i32> { ... }
fn get_list_property(&self, p0: String) -> Result<String> { ... }
fn get_list_property_non_rec(&self, p0: String) -> Result<String> { ... }
}Provided Methods§
fn is_list_element(&self) -> Result<bool>
fn is_step_loop(&self) -> Result<bool>
fn is_step_loop_in_table_structure(&self) -> Result<bool>
fn loop_col_count(&self) -> Result<i32>
fn loop_current_col(&self) -> Result<i32>
fn loop_current_col_count(&self) -> Result<i32>
fn loop_current_row(&self) -> Result<i32>
fn loop_row_count(&self) -> Result<i32>
fn get_list_property(&self, p0: String) -> Result<String>
fn get_list_property_non_rec(&self, p0: String) -> Result<String>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".