pub enum ParseChildIndexError {
ParseInt(ParseIntError),
IndexNotInRange(OutOfRange),
}
Expand description
Error returned by parsing child index
Variants§
ParseInt(ParseIntError)
Indicates that parsing an u32
integer failed
IndexNotInRange(OutOfRange)
Parsed index was out of acceptable range
Trait Implementations§
Source§impl Debug for ParseChildIndexError
impl Debug for ParseChildIndexError
Source§impl Display for ParseChildIndexError
impl Display for ParseChildIndexError
Source§impl Error for ParseChildIndexError
impl Error for ParseChildIndexError
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 ParseChildIndexError
impl RefUnwindSafe for ParseChildIndexError
impl Send for ParseChildIndexError
impl Sync for ParseChildIndexError
impl Unpin for ParseChildIndexError
impl UnwindSafe for ParseChildIndexError
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