pub trait GuiChartExt<T: HasIDispatch = Self>: HasIDispatch<T> {
// Provided method
fn value_change(
&self,
p0: i32,
p1: i32,
p2: String,
p3: String,
p4: bool,
p5: String,
p6: String,
p7: i32,
) -> Result<()> { ... }
}Provided Methods§
fn value_change( &self, p0: i32, p1: i32, p2: String, p3: String, p4: bool, p5: String, p6: String, p7: i32, ) -> Result<()>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".