pub trait AttributedGraph {
    type Graph;
    type Attributes<'a>
       where Self: 'a;

    // Required method
    fn split(&mut self) -> (&Self::Graph, Self::Attributes<'_>);
}
Expand description

A trait to split the graph and its attributes.

Required Associated Types§

source

type Graph

source

type Attributes<'a> where Self: 'a

Required Methods§

source

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

Implementors§