Trait Detail_GraphTrait

Source
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

Required Methods§

Provided Methods§

Source

fn create(&mut self, num_vertices: i32) -> Result<()>

Source

fn add_edge(&mut self, from: i32, to: i32, weight: f32) -> Result<()>

Implementors§