Enum gltf_utils::Indices [] [src]

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

Index data.

Variants

Index data of type U8

Index data of type U16

Index data of type U32

Methods

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

Important traits for CastingIter<'a, A>
[src]

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

Trait Implementations

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

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

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

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<'a> Send for Indices<'a>

impl<'a> Sync for Indices<'a>