pub trait FromGraph6 {
// Required method
fn from_graph6_string(graph6_string: String) -> Self;
}
Expand description
A graph that can be converted from graph6 format string.
Required Methods§
fn from_graph6_string(graph6_string: String) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
impl<Ix: IndexType> FromGraph6 for Csr<(), (), Undirected, Ix>
impl<Ix: IndexType> FromGraph6 for Graph<(), (), Undirected, Ix>
impl<Ix: IndexType, S: BuildHasher + Default> FromGraph6 for GraphMap<Ix, (), Undirected, S>
Available on crate feature
graphmap
only.