pub trait Elementswhere
Self: Debug,{
// Required method
fn node_neighbors(&self, neighbors: &mut [Vec<usize>]);
}Required Methods§
fn node_neighbors(&self, neighbors: &mut [Vec<usize>])
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".