Trait rs_graph::attributes::AttributedGraph [−][src]
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.