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

pub enum ReadIndices<'a> {
    U8(Iter<'a, u8>),
    U16(Iter<'a, u16>),
    U32(Iter<'a, u32>),
}
This is supported on feature="utils" only.

Index data.

Variants

U8(Iter<'a, u8>)
This is supported on feature="utils" only.

Index data of type U8

U16(Iter<'a, u16>)
This is supported on feature="utils" only.

Index data of type U16

U32(Iter<'a, u32>)
This is supported on feature="utils" only.

Index data of type U32

Methods

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

pub fn into_u32(self) -> CastingIter<'a, U32>[src]

This is supported on feature="utils" only.

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

Trait Implementations

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

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

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.