AdjacenciesWithValue

Trait AdjacenciesWithValue 

Source
pub trait AdjacenciesWithValue<T>: GraphBase
where T: Clone,
{ type AIndex: AdjacencyIndexWithValue<VIndex = Self::VIndex, AValue = T>; type AIter<'g>: Iterator<Item = Self::AIndex> where Self: 'g; // Required method fn adjacencies_with_value(&self, vid: Self::VIndex) -> Self::AIter<'_>; }

Required Associated Types§

Source

type AIndex: AdjacencyIndexWithValue<VIndex = Self::VIndex, AValue = T>

Source

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

Required Methods§

Source

fn adjacencies_with_value(&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§