[][src]Trait outils::types::Tgf

pub trait Tgf {
    fn to_tgf(&self) -> String;
}

Trees and graphs implementing this trait are able to export a TGF representation of themselves, using debug formatting for tree node, vertex and edge contents.

Required methods

fn to_tgf(&self) -> String

Returns a TGF representation of Self.

Loading content...

Implementors

impl<K, V> Tgf for AaTree<K, V> where
    K: KeyType,
    V: ValueType
[src]

impl<K, V, W> Tgf for WeightedAaTree<K, V, W> where
    K: KeyType,
    V: ValueType,
    W: WeightType
[src]

impl<V> Tgf for AaForest<V> where
    V: ValueType
[src]

impl<V> Tgf for Forest<V> where
    V: ValueType
[src]

impl<V, W> Tgf for WeightedAaForest<V, W> where
    V: ValueType,
    W: WeightType
[src]

Loading content...