[][src]Struct ethereumvm::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 Sync for Stack

impl Unpin for Stack

impl Send for Stack

impl UnwindSafe for Stack

impl RefUnwindSafe for Stack

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self