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