pub trait GuiNetChart_Impl<T: HasIDispatch = Self>: HasIDispatch<T> {
    // Provided methods
    fn link_count(&self) -> Result<i32> { ... }
    fn node_count(&self) -> Result<i32> { ... }
    fn get_link_content(&self, p0: i32, p1: i32) -> Result<String> { ... }
    fn get_node_content(&self, p0: i32, p1: i32) -> Result<String> { ... }
    fn send_data(&self, p0: String) -> Result<()> { ... }
}

Provided Methods§

source

fn node_count(&self) -> Result<i32>

source

fn get_node_content(&self, p0: i32, p1: i32) -> Result<String>

source

fn send_data(&self, p0: String) -> Result<()>

Implementors§