pub enum ObjError {
Io(Error),
Parse {
line: usize,
kind: ParseErrorKind,
},
}Expand description
Error type returned by read_obj_file.
Io wraps an underlying io::Error from the source. Parse carries a
structured description of an OBJ syntax problem at a specific line.
Variants§
Trait Implementations§
Source§impl Error for ObjError
impl Error for ObjError
Source§fn source(&self) -> Option<&(dyn StdError + 'static)>
fn source(&self) -> Option<&(dyn StdError + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for ObjError
impl !RefUnwindSafe for ObjError
impl Send for ObjError
impl Sync for ObjError
impl Unpin for ObjError
impl UnsafeUnpin for ObjError
impl !UnwindSafe for ObjError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more