Enum meshopt::error::ErrorKind [−][src]
pub enum ErrorKind { Native(i32), Memory(String), Parse(String), Path(PathBuf), Bug(String), Config(String), Io, Number, // some variants omitted }
The specific kind of error that can occur.
Variants
Native(i32)
An error that occurred interfacing with native code through FFI.
Memory(String)
An error that occurred while accessing or allocating memory
Parse(String)
An error that occurred while parsing a data source
Path(PathBuf)
An error that occurred while working with a file path.
Bug(String)
Generally, these errors correspond to bugs in this library.
Config(String)
An error occurred while reading/writing a configuration
An unexpected I/O error occurred.
An error occurred while parsing a number in a free-form query.