pub struct ParseEndfIntError { /* private fields */ }
Expand description
Error returned when parsing ENDF-6 format integers failed.
ParseEndfIntError
provides a kind()
(ParseEndfIntErrorKind
) method
if fine error handling is needed.
Implementations§
Source§impl ParseEndfIntError
impl ParseEndfIntError
Sourcepub fn kind(&self) -> ParseEndfIntErrorKind
pub fn kind(&self) -> ParseEndfIntErrorKind
Returns the corresponding ParseEndfIntErrorKind
for this error.
Trait Implementations§
Source§impl Debug for ParseEndfIntError
impl Debug for ParseEndfIntError
Source§impl Display for ParseEndfIntError
impl Display for ParseEndfIntError
Source§impl Error for ParseEndfIntError
impl Error for ParseEndfIntError
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()
Auto Trait Implementations§
impl Freeze for ParseEndfIntError
impl RefUnwindSafe for ParseEndfIntError
impl Send for ParseEndfIntError
impl Sync for ParseEndfIntError
impl Unpin for ParseEndfIntError
impl UnwindSafe for ParseEndfIntError
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