pub type Result<T> = Result<T, GltfError>;
Result type for glTF export operations
pub enum Result<T> { Ok(T), Err(GltfError), }
Contains the success value
Contains the error value