Enum gltf::mesh::util::ReadIndices[][src]

pub enum ReadIndices<'a> {
    U8(Iter<'a, u8>),
    U16(Iter<'a, u16>),
    U32(Iter<'a, u32>),
}

Index data.

Variants

Index data of type U8

Index data of type U16

Index data of type U32

Methods

impl<'a> ReadIndices<'a>
[src]

Important traits for CastingIter<'a, A>

Reinterpret indices as u32, which can fit any possible index.

Trait Implementations

impl<'a> Clone for ReadIndices<'a>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'a> Debug for ReadIndices<'a>
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<'a> Send for ReadIndices<'a>

impl<'a> Sync for ReadIndices<'a>