pub enum SpatialError {
MissingField(String),
SchemaValidation(String),
InvalidArgument(String),
Io(String),
BufferLengthMismatch {
expected: usize,
found: usize,
},
UnsupportedDType(DType),
}Expand description
Core error type for SpatialRust.
Variants§
MissingField(String)
A required field is missing from the point cloud schema.
SchemaValidation(String)
Schema validation failed.
InvalidArgument(String)
Invalid argument supplied by the caller.
Io(String)
IO-related error surfaced through higher-level crates.
BufferLengthMismatch
Buffer length does not match point cloud length.
UnsupportedDType(DType)
Unsupported dtype for the requested operation.
Trait Implementations§
Source§impl Debug for SpatialError
impl Debug for SpatialError
Source§impl Display for SpatialError
impl Display for SpatialError
Source§impl Error for SpatialError
impl Error for SpatialError
1.30.0 · 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()
Source§impl From<SpatialError> for IoError
impl From<SpatialError> for IoError
Source§fn from(source: SpatialError) -> IoError
fn from(source: SpatialError) -> IoError
Converts to this type from the input type.
Source§impl PartialEq for SpatialError
impl PartialEq for SpatialError
impl Eq for SpatialError
impl StructuralPartialEq for SpatialError
Auto Trait Implementations§
impl Freeze for SpatialError
impl RefUnwindSafe for SpatialError
impl Send for SpatialError
impl Sync for SpatialError
impl Unpin for SpatialError
impl UnsafeUnpin for SpatialError
impl UnwindSafe for SpatialError
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more