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

pub enum ReadColors<'a> {
    RgbU8(Iter<'a, [u8; 3]>),
    RgbU16(Iter<'a, [u16; 3]>),
    RgbF32(Iter<'a, [f32; 3]>),
    RgbaU8(Iter<'a, [u8; 4]>),
    RgbaU16(Iter<'a, [u16; 4]>),
    RgbaF32(Iter<'a, [f32; 4]>),
}
This is supported on feature="utils" only.

Vertex colors.

Variants

RgbU8(Iter<'a, [u8; 3]>)
This is supported on feature="utils" only.

RGB vertex color of type [u8; 3]>.

RgbU16(Iter<'a, [u16; 3]>)
This is supported on feature="utils" only.

RGB vertex color of type [u16; 3]>.

RgbF32(Iter<'a, [f32; 3]>)
This is supported on feature="utils" only.

RGB vertex color of type [f32; 3].

RgbaU8(Iter<'a, [u8; 4]>)
This is supported on feature="utils" only.

RGBA vertex color of type [u8; 4]>.

RgbaU16(Iter<'a, [u16; 4]>)
This is supported on feature="utils" only.

RGBA vertex color of type [u16; 4]>.

RgbaF32(Iter<'a, [f32; 4]>)
This is supported on feature="utils" only.

RGBA vertex color of type [f32; 4].

Methods

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

pub fn into_rgb_u8(self) -> CastingIter<'a, RgbU8>[src]

This is supported on feature="utils" only.

Reinterpret colors as RGB u8, discarding alpha, if present. Lossy if the underlying iterator yields u16, f32 or any RGBA.

pub fn into_rgb_u16(self) -> CastingIter<'a, RgbU16>[src]

This is supported on feature="utils" only.

Reinterpret colors as RGB u16, discarding alpha, if present. Lossy if the underlying iterator yields f32 or any RGBA.

pub fn into_rgb_f32(self) -> CastingIter<'a, RgbF32>[src]

This is supported on feature="utils" only.

Reinterpret colors as RGB f32, discarding alpha, if present. Lossy if the underlying iterator yields u16 or any RGBA.

pub fn into_rgba_u8(self) -> CastingIter<'a, RgbaU8>[src]

This is supported on feature="utils" only.

Reinterpret colors as RGBA u8, with default alpha 255. Lossy if the underlying iterator yields u16 or f32.

pub fn into_rgba_u16(self) -> CastingIter<'a, RgbaU16>[src]

This is supported on feature="utils" only.

Reinterpret colors as RGBA u16, with default alpha 65535. Lossy if the underlying iterator yields f32.

pub fn into_rgba_f32(self) -> CastingIter<'a, RgbaF32>[src]

This is supported on feature="utils" only.

Reinterpret colors as RGBA f32, with default alpha 1.0. Lossy if the underlying iterator yields u16.

Trait Implementations

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for ReadColors<'a>

impl<'a> Send for ReadColors<'a>

impl<'a> Sync for ReadColors<'a>

impl<'a> Unpin for ReadColors<'a>

impl<'a> UnwindSafe for ReadColors<'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.