pub type LoadResult = Result<(Vec<Model>, Result<Vec<Material>, LoadError>), LoadError>;Expand description
A Result containing all the models loaded from the file and any
materials from referenced material libraries. Or an error that occured while
loading.
Aliased Type§
pub enum LoadResult {
Ok((Vec<Model>, Result<Vec<Material>, LoadError>)),
Err(LoadError),
}