Enum ssvm_evmc_sys::evmc_call_kind [−][src]
#[repr(u32)]
pub enum evmc_call_kind {
EVMC_CALL,
EVMC_DELEGATECALL,
EVMC_CALLCODE,
EVMC_CREATE,
EVMC_CREATE2,
}
Expand description
The kind of call-like instruction.
Variants
EVMC_CALL
< Request CALL.
EVMC_DELEGATECALL
< Request DELEGATECALL. Valid since Homestead. The value param ignored.
EVMC_CALLCODE
< Request CALLCODE.
EVMC_CREATE
< Request CREATE.
EVMC_CREATE2
< Request CREATE2. Valid since Constantinople.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for evmc_call_kind
impl Send for evmc_call_kind
impl Sync for evmc_call_kind
impl Unpin for evmc_call_kind
impl UnwindSafe for evmc_call_kind
Blanket Implementations
Mutably borrows from an owned value. Read more