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§
type Graph
type Attributes<'a> where Self: 'a
Required Methods§
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.