Trait AdjacenciesWithEindex

Source
pub trait AdjacenciesWithEindex: EIndexedGraph {
    type AIndex: AdjacencyIndexWithEindex<VIndex = Self::VIndex, EIndex = Self::EIndex>;
    type AIter<'g>: Iterator<Item = Self::AIndex>
       where Self: 'g;

    // Required method
    fn adjacencies_with_eindex(&self, vid: Self::VIndex) -> Self::AIter<'_>;
}

Required Associated Types§

Source

type AIndex: AdjacencyIndexWithEindex<VIndex = Self::VIndex, EIndex = Self::EIndex>

Source

type AIter<'g>: Iterator<Item = Self::AIndex> where Self: 'g

Required Methods§

Source

fn adjacencies_with_eindex(&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.

Implementors§