pub enum Indices {
None,
U8(Vec<u8>),
U16(Vec<u16>),
U32(Vec<u32>),
}Expand description
An array of indices. Supports different data types.
Variants§
None
Do not use indices, ie. the faces are all unconnected.
U8(Vec<u8>)
Uses unsigned 8 bit integer for each index.
U16(Vec<u16>)
Uses unsigned 16 bit integer for each index.
U32(Vec<u32>)
Uses unsigned 32 bit integer for each index.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Indices
impl Send for Indices
impl Sync for Indices
impl Unpin for Indices
impl UnwindSafe for Indices
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more