pub trait Adjacency: WithVertex {
    fn out_neighbors(&self, v: Vertex<Self>) -> OutNeighborIter<'_, Self>;

    fn out_degree(&self, v: Vertex<Self>) -> usize { ... }
}

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors