pub trait GuiBarChartExt<T: HasIDispatch = Self>: HasIDispatch<T> {
// Provided methods
fn chart_count(&self) -> Result<i32> { ... }
fn bar_count(&self, p0: i32) -> Result<i32> { ... }
fn get_bar_content(&self, p0: i32, p1: i32, p2: i32) -> Result<String> { ... }
fn get_grid_line_content(&self, p0: i32, p1: i32, p2: i32) -> Result<String> { ... }
fn grid_count(&self, p0: i32) -> Result<i32> { ... }
fn link_count(&self, p0: i32) -> Result<i32> { ... }
fn send_data(&self, p0: String) -> Result<()> { ... }
}Provided Methods§
fn chart_count(&self) -> Result<i32>
fn bar_count(&self, p0: i32) -> Result<i32>
fn get_bar_content(&self, p0: i32, p1: i32, p2: i32) -> Result<String>
fn get_grid_line_content(&self, p0: i32, p1: i32, p2: i32) -> Result<String>
fn grid_count(&self, p0: i32) -> Result<i32>
fn link_count(&self, p0: i32) -> Result<i32>
fn send_data(&self, p0: String) -> Result<()>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".