Trait gltf::mesh::util::joints::Cast [−][src]
pub trait Cast {
type Output;
fn cast_u8(x: [u8; 4]) -> Self::Output;
fn cast_u16(x: [u16; 4]) -> Self::Output;
}This is supported on crate feature
utils only.Expand description
Trait for types which describe casting behaviour.
Associated Types
Loading content...Required methods
fn cast_u8(x: [u8; 4]) -> Self::Output[src]
Expand description
Cast from u8.
fn cast_u16(x: [u16; 4]) -> Self::Output[src]
Expand description
Cast from u16.
Implementors
Loading content...