Trait ToGraph6

Source
pub trait ToGraph6 {
    // Required method
    fn graph6_string(&self) -> String;
}
Expand description

A graph that can be converted to graph6 format string.

Required Methods§

Implementors§

Source§

impl<N, E, Ix: IndexType> ToGraph6 for Csr<N, E, Undirected, Ix>

Source§

impl<N, E, Ix: IndexType> ToGraph6 for Graph<N, E, Undirected, Ix>

Source§

impl<N: NodeTrait, E, S: BuildHasher> ToGraph6 for GraphMap<N, E, Undirected, S>