Trait WriteGraph

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

Required Methods§

Source

fn write_txt(&self, filename: &str) -> Result<()>

Source

fn write_gzipped(&self, filename: &str) -> Result<()>

Implementors§

Source§

impl<G: Graph> WriteGraph for G