Trait ReadGraph

Source
pub trait ReadGraph {
    type Error;

    // Required method
    fn read_graph(&mut self, path: &str) -> Result<(), Self::Error>;
}

Required Associated Types§

Required Methods§

Source

fn read_graph(&mut self, path: &str) -> Result<(), Self::Error>

Implementors§