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.

Associated Types

type Graph: 'a[src]

type Attributes: 'a[src]

Loading content...

Required methods

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

Loading content...

Implementors

Loading content...