pub unsafe trait VertexMember {
    fn format() -> (VertexMemberTy, usize);
}
Expand description

Trait for data types that can be used as vertex members. Used by the impl_vertex! macro.

Required Methods

Returns the format and array size of the member.

Implementations on Foreign Types

Implementors