Skip to main content

ToGraph6

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§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

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, E, Ix: IndexType> ToGraph6 for StableGraph<N, E, Undirected, Ix>

Available on crate feature stable_graph only.
Source§

impl<N, E, S, Null, Ix> ToGraph6 for MatrixGraph<N, E, S, Undirected, Null, Ix>
where N: NodeTrait, Null: Nullable<Wrapped = E>, Ix: IndexType, S: BuildHasher + Default,

Available on crate feature matrix_graph only.
Source§

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

Available on crate feature graphmap only.