pub enum CartesianProjectionError {
Show 18 variants
Cube(CubeTransformError),
SourceRank {
actual: usize,
},
SourceRequiresSingleFrame {
actual: usize,
},
SourceDopplerMismatch {
expected: usize,
actual: usize,
},
SourceApertureMismatch {
expected: usize,
actual: usize,
},
SourceRangeMismatch {
expected: usize,
actual: usize,
},
InvalidPositiveResolution,
InvalidAxisSize,
InvalidVelocityOrigin,
InvalidGridShape,
InvalidGridOrigin,
InvalidGridVoxelSize,
NoSpatialSupport,
NoDopplerSupport,
EmptySourceSelection,
NonFiniteGridCoordinate,
NonFiniteDopplerCoordinate,
WorkerPanicked,
}Variants§
Cube(CubeTransformError)
SourceRank
SourceRequiresSingleFrame
SourceDopplerMismatch
SourceApertureMismatch
SourceRangeMismatch
InvalidPositiveResolution
InvalidAxisSize
InvalidVelocityOrigin
InvalidGridShape
InvalidGridOrigin
InvalidGridVoxelSize
NoSpatialSupport
NoDopplerSupport
EmptySourceSelection
NonFiniteGridCoordinate
NonFiniteDopplerCoordinate
WorkerPanicked
Trait Implementations§
Source§impl Clone for CartesianProjectionError
impl Clone for CartesianProjectionError
Source§fn clone(&self) -> CartesianProjectionError
fn clone(&self) -> CartesianProjectionError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CartesianProjectionError
impl Debug for CartesianProjectionError
Source§impl Display for CartesianProjectionError
impl Display for CartesianProjectionError
impl Eq for CartesianProjectionError
Source§impl Error for CartesianProjectionError
impl Error for CartesianProjectionError
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<CubeTransformError> for CartesianProjectionError
impl From<CubeTransformError> for CartesianProjectionError
Source§fn from(error: CubeTransformError) -> Self
fn from(error: CubeTransformError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for CartesianProjectionError
impl PartialEq for CartesianProjectionError
impl StructuralPartialEq for CartesianProjectionError
Auto Trait Implementations§
impl Freeze for CartesianProjectionError
impl RefUnwindSafe for CartesianProjectionError
impl Send for CartesianProjectionError
impl Sync for CartesianProjectionError
impl Unpin for CartesianProjectionError
impl UnsafeUnpin for CartesianProjectionError
impl UnwindSafe for CartesianProjectionError
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