[][src]Struct evm::PC

pub struct PC<'a, P: Patch> { /* fields omitted */ }

Represents a program counter in EVM.

Methods

impl<'a, P: Patch> PC<'a, P>[src]

pub fn code(&self) -> &[u8][src]

Get the code bytearray.

pub fn position(&self) -> usize[src]

Get the current program counter position.

pub fn opcode_position(&self) -> usize[src]

Get the current opcode position. Should only be used when debugging.

pub fn is_valid(&self, position: usize) -> bool[src]

Returns true if the position is a valid jump destination. If not, returns false.

pub fn is_end(&self) -> bool[src]

Check whether the PC is ended. Next read on this PC would result in PCError::PCOverflow.

pub fn peek_opcode(&self) -> Result<Opcode, OnChainError>[src]

Peek the next opcode.

pub fn peek(&self) -> Result<Instruction, OnChainError>[src]

Peek the next instruction.

impl<'a, P: Patch> PC<'a, P>[src]

pub fn new(
    patch: &'a P,
    code: &'a [u8],
    valids: &'a Valids,
    position: &'a usize
) -> Self
[src]

Create a new program counter from the given code.

Auto Trait Implementations

impl<'a, P> Send for PC<'a, P> where
    P: Sync

impl<'a, P> Sync for PC<'a, P> where
    P: Sync

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

type Output = T

Should always be Self