pub trait VertexList: Sized + WithVertex {
    fn vertices(&self) -> VertexIter<'_, Self>;

    fn num_vertices(&self) -> usize { ... }
}

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors