pub enum SpatialTensorBridgeError {
Spatial(SpatialError),
Tensor(TensorError),
}Expand description
Errors raised while exposing a point-cloud column as a generic tensor.
Variants§
Spatial(SpatialError)
The requested field is absent or does not have the required dtype.
Tensor(TensorError)
The generic tensor descriptor or storage is invalid.
Trait Implementations§
Source§impl Debug for SpatialTensorBridgeError
impl Debug for SpatialTensorBridgeError
Source§impl Display for SpatialTensorBridgeError
impl Display for SpatialTensorBridgeError
Source§impl Error for SpatialTensorBridgeError
impl Error for SpatialTensorBridgeError
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 SpatialTensorBridgeError
impl From<SpatialError> for SpatialTensorBridgeError
Source§impl From<TensorError> for SpatialTensorBridgeError
impl From<TensorError> for SpatialTensorBridgeError
Source§fn from(source: TensorError) -> Self
fn from(source: TensorError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SpatialTensorBridgeError
impl RefUnwindSafe for SpatialTensorBridgeError
impl Send for SpatialTensorBridgeError
impl Sync for SpatialTensorBridgeError
impl Unpin for SpatialTensorBridgeError
impl UnsafeUnpin for SpatialTensorBridgeError
impl UnwindSafe for SpatialTensorBridgeError
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