pub trait Adjacencies: GraphBase {
type AIndex: AdjacencyIndex<VIndex = Self::VIndex>;
type AIter<'g>: Iterator<Item = Self::AIndex>
where Self: 'g;
// Required method
fn adjacencies(&self, vid: Self::VIndex) -> Self::AIter<'_>;
}
Required Associated Types§
type AIndex: AdjacencyIndex<VIndex = Self::VIndex>
type AIter<'g>: Iterator<Item = Self::AIndex> where Self: 'g
Required Methods§
fn adjacencies(&self, vid: Self::VIndex) -> Self::AIter<'_>
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.