Enum three_d::io::IOError [−][src]
pub enum IOError {
Image(ImageError),
Bincode(Error),
Obj(ParseError),
IO(Error),
FailedToLoad {
message: String,
},
FailedToSave {
message: String,
},
}Expand description
Error message from the core module.
Variants
Image(ImageError)Expand description
An image error.
Bincode(Error)Expand description
A .3d parsing error.
Obj(ParseError)Expand description
A .obj parsing error.
IO(Error)Expand description
An IO error.
Expand description
A loading error.
Show fields
Fields of FailedToLoad
message: StringExpand description
Error message.
Expand description
A saving error.
Show fields
Fields of FailedToSave
message: StringExpand description
Error message.
Trait Implementations
impl From<ImageError> for IOError[src]
impl From<ImageError> for IOError[src]fn from(other: ImageError) -> Self[src]
fn from(other: ImageError) -> Self[src]Performs the conversion.
impl From<ParseError> for IOError[src]
impl From<ParseError> for IOError[src]fn from(other: ParseError) -> Self[src]
fn from(other: ParseError) -> Self[src]Performs the conversion.