pub enum NereidsError {
Endf(String),
Physics(String),
Io(Error),
Fitting(String),
InvalidParameter(String),
}Expand description
Top-level error type for all NEREIDS operations.
Variants§
Trait Implementations§
Source§impl Debug for NereidsError
impl Debug for NereidsError
Source§impl Display for NereidsError
impl Display for NereidsError
Source§impl Error for NereidsError
impl Error for NereidsError
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()
Auto Trait Implementations§
impl Freeze for NereidsError
impl !RefUnwindSafe for NereidsError
impl Send for NereidsError
impl Sync for NereidsError
impl Unpin for NereidsError
impl UnsafeUnpin for NereidsError
impl !UnwindSafe for NereidsError
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