[][src]Trait rs_graph::attributes::AttributedGraph

pub trait AttributedGraph<'a> {
    type Graph: 'a;
    type Attributes: 'a;
    fn split(&'a mut self) -> (&'a Self::Graph, Self::Attributes);
}

A trait to split the graph and its attributes.

Associated Types

type Graph: 'a

type Attributes: 'a

Loading content...

Required methods

fn split(&'a mut self) -> (&'a Self::Graph, Self::Attributes)

Loading content...

Implementors

Loading content...