pub trait ToGraph6 {
// Required method
fn graph6_string(&self) -> String;
}
Expand description
A graph that can be converted to graph6 format string.
Required Methods§
fn graph6_string(&self) -> String
Implementors§
impl<N, E, Ix: IndexType> ToGraph6 for Csr<N, E, Undirected, Ix>
impl<N, E, Ix: IndexType> ToGraph6 for Graph<N, E, Undirected, Ix>
impl<N: NodeTrait, E, S: BuildHasher> ToGraph6 for GraphMap<N, E, Undirected, S>
Available on crate feature
graphmap
only.