[][src]Trait gltf::mesh::util::colors::Cast

pub trait Cast {
    type Output;
    fn cast_rgb_u8(x: [u8; 3]) -> Self::Output;
fn cast_rgb_u16(x: [u16; 3]) -> Self::Output;
fn cast_rgb_f32(x: [f32; 3]) -> Self::Output;
fn cast_rgba_u8(x: [u8; 4]) -> Self::Output;
fn cast_rgba_u16(x: [u16; 4]) -> Self::Output;
fn cast_rgba_f32(x: [f32; 4]) -> Self::Output; }
This is supported on feature="utils" only.

Trait for types which describe casting behaviour.

Associated Types

type Output

This is supported on feature="utils" only.

Output type.

Loading content...

Required methods

fn cast_rgb_u8(x: [u8; 3]) -> Self::Output

This is supported on feature="utils" only.

Cast from RGB u8.

fn cast_rgb_u16(x: [u16; 3]) -> Self::Output

This is supported on feature="utils" only.

Cast from RGB u16.

fn cast_rgb_f32(x: [f32; 3]) -> Self::Output

This is supported on feature="utils" only.

Cast from RGB f32.

fn cast_rgba_u8(x: [u8; 4]) -> Self::Output

This is supported on feature="utils" only.

Cast from RGBA u8.

fn cast_rgba_u16(x: [u16; 4]) -> Self::Output

This is supported on feature="utils" only.

Cast from RGBA u16.

fn cast_rgba_f32(x: [f32; 4]) -> Self::Output

This is supported on feature="utils" only.

Cast from RGBA f32.

Loading content...

Implementors

impl Cast for RgbF32[src]

type Output = [f32; 3]

This is supported on feature="utils" only.

impl Cast for RgbU16[src]

type Output = [u16; 3]

This is supported on feature="utils" only.

impl Cast for RgbU8[src]

type Output = [u8; 3]

This is supported on feature="utils" only.

impl Cast for RgbaF32[src]

type Output = [f32; 4]

This is supported on feature="utils" only.

impl Cast for RgbaU16[src]

type Output = [u16; 4]

This is supported on feature="utils" only.

impl Cast for RgbaU8[src]

type Output = [u8; 4]

This is supported on feature="utils" only.
Loading content...