#[repr(i32)]pub enum ErrorType {
Unknown = -1,
InvalidParameter = -2,
InputAdapter = -3,
OutputAdapter = -4,
ParseAdapter = -5,
SerializeAdapter = -6,
ParseAdapterInvalidInput = -7,
ParseAdapterRequestedChannelNotPresent = -8,
SerializeAdapterUnrepresentableData = -9,
}
Expand description
Describes the type of error that occurred during voxel conversion operations.
Variants§
Unknown = -1
There is no information associated with this error type.
InvalidParameter = -2
A supplied parameter was invalid.
InputAdapter = -3
An issue occurred with an input adapter.
OutputAdapter = -4
An issue occurred with an output adapter.
ParseAdapter = -5
An issue occurred with a parse adapter.
SerializeAdapter = -6
An issue occurred with a serialize adapter.
ParseAdapterInvalidInput = -7
A parse adapter was provided invalid input.
ParseAdapterRequestedChannelNotPresent = -8
A voxel channel was not available for a parse adapter to read.
SerializeAdapterUnrepresentableData = -9
A serialize adapter’s format did not support the output data type.
Trait Implementations§
impl Copy for ErrorType
impl Eq for ErrorType
impl StructuralPartialEq for ErrorType
Auto Trait Implementations§
impl Freeze for ErrorType
impl RefUnwindSafe for ErrorType
impl Send for ErrorType
impl Sync for ErrorType
impl Unpin for ErrorType
impl UnwindSafe for ErrorType
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