Struct evm::Runtime [−][src]
EVM runtime.
The runtime wraps an EVM Machine
with support of return data and context.
Implementations
impl<'config> Runtime<'config>
[src][−]
pub fn new(
code: Rc<Vec<u8, Global>>,
data: Rc<Vec<u8, Global>>,
context: Context,
config: &'config Config
) -> Runtime<'config>
[src][−]
code: Rc<Vec<u8, Global>>,
data: Rc<Vec<u8, Global>>,
context: Context,
config: &'config Config
) -> Runtime<'config>
Create a new runtime with given code and data.
pub fn machine(&self) -> &Machine
[src][−]
Get a reference to the machine.
pub fn step<H>(
&'a mut self,
handler: &mut H
) -> Result<(), Capture<ExitReason, Resolve<'a, 'config, H>>> where
H: Handler,
[src][−]
&'a mut self,
handler: &mut H
) -> Result<(), Capture<ExitReason, Resolve<'a, 'config, H>>> where
H: Handler,
Step the runtime.
pub fn run<H>(
&'a mut self,
handler: &mut H
) -> Capture<ExitReason, Resolve<'a, 'config, H>> where
H: Handler,
[src][−]
&'a mut self,
handler: &mut H
) -> Capture<ExitReason, Resolve<'a, 'config, H>> where
H: Handler,
Loop stepping the runtime until it stops.
Auto Trait Implementations
impl<'config> !RefUnwindSafe for Runtime<'config>
impl<'config> !Send for Runtime<'config>
impl<'config> !Sync for Runtime<'config>
impl<'config> Unpin for Runtime<'config>
impl<'config> UnwindSafe for Runtime<'config>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[src][+]
V: MultiLane<T>,