pub enum DeError {
MissingVerticesSection(String),
MissingIndicesSection(String),
SectionPrimitive(String, DeError),
Visual(DeError),
Primitive(DeError),
}Expand description
Deserialization errors that can happen while read a whole compiled model.
Variants§
MissingVerticesSection(String)
MissingIndicesSection(String)
SectionPrimitive(String, DeError)
Visual(DeError)
Primitive(DeError)
Trait Implementations§
Source§impl Error for DeError
impl Error for DeError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + '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 DeError
impl !RefUnwindSafe for DeError
impl Send for DeError
impl Sync for DeError
impl Unpin for DeError
impl !UnwindSafe for DeError
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