pub trait Detail_GraphTrait: Detail_GraphTraitConst {
    fn as_raw_mut_Detail_Graph(&mut self) -> *mut c_void;

    fn create(&mut self, num_vertices: i32) -> Result<()> { ... }
    fn add_edge(&mut self, from: i32, to: i32, weight: f32) -> Result<()> { ... }
}

Required Methods

Provided Methods

Implementors