logo
pub trait FillVertexConstructor<OutputVertex> {
    fn new_vertex(&mut self, vertex: FillVertex<'_>) -> OutputVertex;
}
Expand description

A trait specifying how to create vertex values.

Required Methods

Implementors