[][src]Type Definition obj::ObjResult

type ObjResult<T> = Result<T, ObjError>;

A type for results generated by load_obj and load_mtl where the Err type is hard-wired to ObjError

This typedef is generally used to avoid writing out ObjError directly and is otherwise a direct mapping to std::result::Result.