Trait mash::model::BuildModel [] [src]

pub trait BuildModel {
    type Vertex;
    fn build_model<V, I>(self) -> Result<Model<V, I>, Error>
    where
        V: Vertex,
        I: Index,
        V: From<Self::Vertex>
; }

Something which we can build a model out of.

Associated Types

The vertex type that we need to convert from.

Required Methods

Implementors