Trait CallGraphExporter

Source
pub trait CallGraphExporter {
    // Required method
    fn export(&self, graph: &CallGraph) -> Result<String>;
}
Expand description

Trait for call graph exporters

Required Methods§

Source

fn export(&self, graph: &CallGraph) -> Result<String>

Export call graph to string format

Implementors§