pub trait AdjacenciesWithValue<T>: GraphBasewhere
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§
type AIndex: AdjacencyIndexWithValue<VIndex = Self::VIndex, AValue = T>
type AIter<'g>: Iterator<Item = Self::AIndex> where Self: 'g
Required Methods§
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.