pub trait Vertices: GraphBase {
type VIter<'g>: Iterator<Item = Self::VIndex>
where Self: 'g;
// Required method
fn vertices(&self) -> Self::VIter<'_>;
}Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".