pub enum InterpreterErr {
UnexpectedArgs {
exp: Expression,
},
WriteError(Error),
}Expand description
Various types of Interpreter errors
Variants§
Trait Implementations§
Source§impl Debug for InterpreterErr
impl Debug for InterpreterErr
Source§impl From<Error> for InterpreterErr
impl From<Error> for InterpreterErr
Source§impl<'a> From<InterpreterErr> for Error<'a>
impl<'a> From<InterpreterErr> for Error<'a>
Source§fn from(e: InterpreterErr) -> Self
fn from(e: InterpreterErr) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for InterpreterErr
impl !UnwindSafe for InterpreterErr
impl Freeze for InterpreterErr
impl Send for InterpreterErr
impl Sync for InterpreterErr
impl Unpin for InterpreterErr
impl UnsafeUnpin for InterpreterErr
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