Trait gltf::mesh::util::joints::Cast

source ·
pub trait Cast {
    type Output;

    // Required methods
    fn cast_u8(x: [u8; 4]) -> Self::Output;
    fn cast_u16(x: [u16; 4]) -> Self::Output;
}
Available on crate feature utils only.
Expand description

Trait for types which describe casting behaviour.

Required Associated Types§

source

type Output

Output type.

Required Methods§

source

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

Cast from u8.

source

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

Cast from u16.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl Cast for U16

§

type Output = [u16; 4]