Docs.rs
  • revm-interpreter-16.0.0
    • revm-interpreter 16.0.0
    • Docs.rs crate page
    • MIT
    • Links
    • Repository
    • crates.io
    • Source
    • Owners
    • rakita
    • Dependencies
      • revm-bytecode ^1.0.0 normal
      • revm-context-interface ^1.0.0 normal
      • revm-primitives ^16.0.0 normal
      • serde ^1.0 normal optional
      • bincode ^1.3 dev
      • revm-database-interface ^1.0.0 dev
      • walkdir ^2.5 dev
    • Versions
    • 53.75% of the crate is documented
  • Go to latest version
  • Platform
    • i686-unknown-linux-gnu
    • x86_64-apple-darwin
    • x86_64-unknown-linux-gnu
  • Feature flags
  • docs.rs
    • About docs.rs
    • Privacy policy
  • Rust
    • Rust website
    • The Book
    • Standard Library API Reference
    • Rust by Example
    • The Cargo Guide
    • Clippy Documentation

revm_interpreter16.0.0

InterpreterTypes

Required Associated Types

  • Bytecode
  • Control
  • Extend
  • Input
  • Memory
  • Output
  • ReturnData
  • RuntimeFlag
  • Stack
  • SubRoutineStack

Implementors

In revm_interpreter::interpreter_types

revm_interpreter::interpreter_types

Trait InterpreterTypes

Source
pub trait InterpreterTypes {
    type Stack: StackTr;
    type Memory: MemoryTr;
    type Bytecode: Jumps + Immediates + LegacyBytecode + EofData + EofContainer + EofCodeInfo;
    type ReturnData: ReturnData;
    type Input: InputsTr;
    type SubRoutineStack: SubRoutineStack;
    type Control: LoopControl;
    type RuntimeFlag: RuntimeFlag;
    type Extend;
    type Output;
}

Required Associated Types§

Source

type Stack: StackTr

Source

type Memory: MemoryTr

Source

type Bytecode: Jumps + Immediates + LegacyBytecode + EofData + EofContainer + EofCodeInfo

Source

type ReturnData: ReturnData

Source

type Input: InputsTr

Source

type SubRoutineStack: SubRoutineStack

Source

type Control: LoopControl

Source

type RuntimeFlag: RuntimeFlag

Source

type Extend

Source

type Output

Implementors§

Source§

impl<EXT, MG: MemoryGetter> InterpreterTypes for EthInterpreter<EXT, MG>

Source§

type Stack = Stack

Source§

type Memory = Rc<RefCell<MG>>

Source§

type Bytecode = ExtBytecode

Source§

type ReturnData = ReturnDataImpl

Source§

type Input = InputsImpl

Source§

type SubRoutineStack = SubRoutineImpl

Source§

type Control = LoopControl

Source§

type RuntimeFlag = RuntimeFlags

Source§

type Extend = EXT

Source§

type Output = InterpreterAction