pub enum DeError {
MissingRootNode,
InvalidNode,
InvalidRenderSet,
MissingBoundingBox,
MissingGeometrySize,
MissingUvDensity,
Pxml(DeError),
}Expand description
Errors that can happend while deserializing a visual processed data.
Variants§
MissingRootNode
The root node is missing.
InvalidNode
A node is malformed.
InvalidRenderSet
A render set is malformed.
MissingBoundingBox
The bounding box is missing.
MissingGeometrySize
The geometry size if missing.
MissingUvDensity
The U/V density is missing.
Pxml(DeError)
Underlying Packed XML deserialization error.
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