pub trait GraphSuccessors<'graph> {
    type Item;
    type Iter: Iterator<Item = Self::Item>;
}

Required Associated Types

Implementations on Foreign Types

Implementors