Enum gltf::mesh::util::ReadIndices [−][src]
Expand description
Index data.
Variants
U8(Iter<'a, u8>)
Index data of type U8
U16(Iter<'a, u16>)
Index data of type U16
U32(Iter<'a, u32>)
Index data of type U32
Implementations
pub fn into_u32(self) -> CastingIter<'a, U32>ⓘNotable traits for CastingIter<'a, A>impl<'a, A: Cast> Iterator for CastingIter<'a, A> type Item = A::Output;
pub fn into_u32(self) -> CastingIter<'a, U32>ⓘNotable traits for CastingIter<'a, A>impl<'a, A: Cast> Iterator for CastingIter<'a, A> type Item = A::Output;
Notable traits for CastingIter<'a, A>
impl<'a, A: Cast> Iterator for CastingIter<'a, A> type Item = A::Output;
Reinterpret indices as u32, which can fit any possible index.
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for ReadIndices<'a>
impl<'a> Send for ReadIndices<'a>
impl<'a> Sync for ReadIndices<'a>
impl<'a> Unpin for ReadIndices<'a>
impl<'a> UnwindSafe for ReadIndices<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more