Enum evmasm::Error [] [src]

pub enum Error {
    UnknownBytecode(u8),
    UnknownInstruction(String),
    NotEnoughBytes,
    BadValue,
    MissingPushValue,
}

Error is only returned when an instruction/bytecode is not found

Variants

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl From<FromHexError> for Error
[src]

Performs the conversion.

impl From<ParseBigIntError> for Error
[src]

Performs the conversion.