pub trait IndexBuffer {
type Item;
const ARITY: Option<usize>;
}
Expand description
Index buffer.
Describes the contents of an index buffer. This includes the arity of the buffer if constant.
Required Associated Constants§
Required Associated Types§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
Source§impl<A, N> IndexBuffer for Flat<A, N>
impl<A, N> IndexBuffer for Flat<A, N>
Source§impl<N> IndexBuffer for Structured<Polygon<N>>
Structured
index buffer that contains dynamic Polygon
s.
impl<N> IndexBuffer for Structured<Polygon<N>>
Structured
index buffer that contains dynamic Polygon
s.