[][src]Struct evm::Runtime

pub struct Runtime { /* fields omitted */ }

Methods

impl Runtime[src]

pub fn new(
    code: Rc<Vec<u8>>,
    data: Rc<Vec<u8>>,
    stack_limit: usize,
    memory_limit: usize,
    context: Context
) -> Runtime
[src]

pub fn machine(&self) -> &Machine[src]

pub fn step<H>(
    &'a mut self,
    handler: &mut H
) -> Result<(), Capture<ExitReason, Resolve<'a, H>>> where
    H: Handler
[src]

pub fn run<H>(
    &'a mut self,
    handler: &mut H
) -> Capture<ExitReason, Resolve<'a, H>> where
    H: Handler
[src]

Auto Trait Implementations

impl !Send for Runtime

impl !Sync for Runtime

impl Unpin for Runtime

impl UnwindSafe for Runtime

impl !RefUnwindSafe for Runtime

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> Same<T> for T

type Output = T

Should always be Self