pub trait Detail_GraphTrait: Detail_GraphTraitConst {
// Required method
fn as_raw_mut_Detail_Graph(&mut self) -> *mut c_void;
// Provided methods
fn create(&mut self, num_vertices: i32) -> Result<()> { ... }
fn add_edge(&mut self, from: i32, to: i32, weight: f32) -> Result<()> { ... }
}
Expand description
Mutable methods for crate::stitching::Detail_Graph