pub enum TapirError<E> {
BracketError,
MemPtrUnderflowError,
InputExceptionError(E),
MissingInputError,
OutputError(Error),
}Expand description
The type of errors encountered/generated by interpret during execution,
representing I/O failures as well as invalid Brainfuck programs/interpreter states.
Variants§
Trait Implementations§
Source§impl<E: Debug> Debug for TapirError<E>
impl<E: Debug> Debug for TapirError<E>
Source§impl<E: Display> Display for TapirError<E>
impl<E: Display> Display for TapirError<E>
Auto Trait Implementations§
impl<E> Freeze for TapirError<E>where
E: Freeze,
impl<E> !RefUnwindSafe for TapirError<E>
impl<E> Send for TapirError<E>where
E: Send,
impl<E> Sync for TapirError<E>where
E: Sync,
impl<E> Unpin for TapirError<E>where
E: Unpin,
impl<E> !UnwindSafe for TapirError<E>
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