[][src]Struct evm::Stack

pub struct Stack { /* fields omitted */ }

Represents an EVM stack.

Methods

impl Stack
[src]

pub fn check_pop_push(
    &self,
    pop: usize,
    push: usize
) -> Result<(), OnChainError>
[src]

Check a pop-push cycle. If the check succeeded, push, pop, set, peek within the limit should not fail.

pub fn push(&mut self, elem: M256) -> Result<(), OnChainError>
[src]

Push a new value to the stack.

pub fn pop(&mut self) -> Result<M256, OnChainError>
[src]

Pop a value from the stack.

pub fn set(&mut self, no_from_top: usize, val: M256) -> Result<(), OnChainError>
[src]

Set a value at given index for the stack, where the top of the stack is at index 0. If the index is too large, StackError::Underflow is returned.

pub fn peek(&self, no_from_top: usize) -> Result<M256, OnChainError>
[src]

Peek a value at given index for the stack, where the top of the stack is at index 0. If the index is too large, StackError::Underflow is returned.

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

Get the current stack length.

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

Returns true if stack is empty

Trait Implementations

impl Default for Stack
[src]

impl Debug for Stack
[src]

Auto Trait Implementations

impl Send for Stack

impl Sync for Stack

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
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

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

🔬 This is a nightly-only experimental API. (try_from)

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