Trait AttributedGraph

Source
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<'_>)

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§