pub trait WriteGraph {
    fn write_txt(&self, filename: &str) -> Result<()>;
    fn write_gzipped(&self, filename: &str) -> Result<()>;
}

Required Methods

Implementors