Enum evm::errors::StackError [] [src]

pub enum StackError {
    Overflow,
    Underflow,
}

Errors returned by an EVM stack.

Variants

Stack is overflowed (pushed more than 1024 items to the stack).

Stack is underflowed (poped an empty stack).

Trait Implementations

impl Debug for StackError
[src]

[src]

Formats the value using the given formatter.

impl Clone for StackError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more