pub enum StackMachineError {
UnkownError,
NumericOverflow,
NumberStackUnderflow,
LoopStackUnderflow,
ScratchStackUnderflow,
InvalidCellOperation,
UnhandledTrap,
RanOutOfGas,
}
Variants§
UnkownError
NumericOverflow
NumberStackUnderflow
LoopStackUnderflow
ScratchStackUnderflow
InvalidCellOperation
UnhandledTrap
RanOutOfGas
Trait Implementations§
Source§impl Debug for StackMachineError
impl Debug for StackMachineError
Source§impl From<TryFromIntError> for StackMachineError
impl From<TryFromIntError> for StackMachineError
Source§fn from(err: TryFromIntError) -> StackMachineError
fn from(err: TryFromIntError) -> StackMachineError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for StackMachineError
impl RefUnwindSafe for StackMachineError
impl Send for StackMachineError
impl Sync for StackMachineError
impl Unpin for StackMachineError
impl UnwindSafe for StackMachineError
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