Struct evm_rpc::RPCStep[][src]

pub struct RPCStep {
    pub depth: usize,
    pub error: String,
    pub gas: Hex<Gas>,
    pub gas_cost: Hex<Gas>,
    pub op: u8,
    pub pc: usize,
    pub opcode_pc: usize,
    pub code_hash: Hex<H256>,
    pub address: Hex<Address>,
    pub breakpoint_index: Option<usize>,
    pub breakpoint: Option<String>,
    pub memory: Option<Vec<Bytes>>,
    pub stack: Option<Vec<Hex<U256>>>,
    pub storage: Option<HashMap<Hex<U256>, Hex<U256>>>,
}

Fields

depth: usizeerror: Stringgas: Hex<Gas>gas_cost: Hex<Gas>op: u8pc: usizeopcode_pc: usizecode_hash: Hex<H256>address: Hex<Address>breakpoint_index: Option<usize>breakpoint: Option<String>memory: Option<Vec<Bytes>>stack: Option<Vec<Hex<U256>>>storage: Option<HashMap<Hex<U256>, Hex<U256>>>

Trait Implementations

impl Clone for RPCStep[src]

impl Debug for RPCStep[src]

impl<'de> Deserialize<'de> for RPCStep[src]

impl Serialize for RPCStep[src]

Auto Trait Implementations

impl RefUnwindSafe for RPCStep

impl Send for RPCStep

impl Sync for RPCStep

impl Unpin for RPCStep

impl UnwindSafe for RPCStep

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> MaybeDebug for T where
    T: Debug
[src]

impl<T> Pointable for T[src]

type Init = T

The type for initializers.

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

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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> Typeable for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]