pub enum CubeError {
Fits(Error),
Io(Error),
Shape(ShapeError),
Beam(BeamError),
UnsupportedNaxis(i64),
MissingKeyword(String),
BeamCountMismatch {
expected: usize,
got: usize,
},
BeamlogParse {
line: usize,
msg: String,
},
NoBeans,
}Variants§
Fits(Error)
Io(Error)
Shape(ShapeError)
Beam(BeamError)
UnsupportedNaxis(i64)
MissingKeyword(String)
BeamCountMismatch
BeamlogParse
NoBeans
Trait Implementations§
Source§impl Error for CubeError
impl Error for CubeError
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<ShapeError> for CubeError
impl From<ShapeError> for CubeError
Source§fn from(source: ShapeError) -> Self
fn from(source: ShapeError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for CubeError
impl !UnwindSafe for CubeError
impl Freeze for CubeError
impl Send for CubeError
impl Sync for CubeError
impl Unpin for CubeError
impl UnsafeUnpin for CubeError
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