Trait gltf::accessor::Item [−][src]
pub trait Item {
fn from_slice(slice: &[u8]) -> Self;
fn zero() -> Self;
}Expand description
Represents items that can be read by an Accessor.
Required methods
fn from_slice(slice: &[u8]) -> Self[src]
Expand description
Create an object of this type from a byte slice.
fn zero() -> Self[src]
Expand description
Create an object of this type that represents a zero value.