pub enum EnhancedInputError<E> {
MalformedInput(String),
InputException(E),
}Expand description
The type of errors generated by enhanced_input.
Wraps the error type E of the underlying iterator in InputException<E>.
Variants§
Trait Implementations§
Source§impl<E: Debug> Debug for EnhancedInputError<E>
impl<E: Debug> Debug for EnhancedInputError<E>
Auto Trait Implementations§
impl<E> Freeze for EnhancedInputError<E>where
E: Freeze,
impl<E> RefUnwindSafe for EnhancedInputError<E>where
E: RefUnwindSafe,
impl<E> Send for EnhancedInputError<E>where
E: Send,
impl<E> Sync for EnhancedInputError<E>where
E: Sync,
impl<E> Unpin for EnhancedInputError<E>where
E: Unpin,
impl<E> UnwindSafe for EnhancedInputError<E>where
E: UnwindSafe,
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