pub enum InputError<T>where
T: FromStr,{
IoError(Error),
ParseError(T::Err),
BreaksConstraint(ConstraintError),
}
Expand description
Error gotten either when input is invalid or some I/O error occurs
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for InputError<T>
impl<T> !RefUnwindSafe for InputError<T>
impl<T> Send for InputError<T>
impl<T> Sync for InputError<T>
impl<T> Unpin for InputError<T>
impl<T> !UnwindSafe for InputError<T>
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