Trait Edges

Source
pub trait Edges: EIndexedGraph {
    type EIter<'g>: Iterator<Item = Self::EIndex>
       where Self: 'g;

    // Required method
    fn edges<'g>(&self) -> Self::EIter<'g>;
}

Required Associated Types§

Source

type EIter<'g>: Iterator<Item = Self::EIndex> where Self: 'g

Required Methods§

Source

fn edges<'g>(&self) -> Self::EIter<'g>

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§