#[repr(u32)]pub enum evmc_call_kind {
EVMC_CALL = 0,
EVMC_DELEGATECALL = 1,
EVMC_CALLCODE = 2,
EVMC_CREATE = 3,
EVMC_CREATE2 = 4,
}Expand description
The kind of call-like instruction.
Variants§
EVMC_CALL = 0
< Request CALL.
EVMC_DELEGATECALL = 1
< Request DELEGATECALL. Valid since Homestead. The value param ignored.
EVMC_CALLCODE = 2
< Request CALLCODE.
EVMC_CREATE = 3
< Request CREATE.
EVMC_CREATE2 = 4
< Request CREATE2. Valid since Constantinople.
Trait Implementations§
Source§impl Clone for evmc_call_kind
impl Clone for evmc_call_kind
Source§fn clone(&self) -> evmc_call_kind
fn clone(&self) -> evmc_call_kind
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for evmc_call_kind
impl Debug for evmc_call_kind
Source§impl Hash for evmc_call_kind
impl Hash for evmc_call_kind
Source§impl PartialEq for evmc_call_kind
impl PartialEq for evmc_call_kind
impl Copy for evmc_call_kind
impl Eq for evmc_call_kind
impl StructuralPartialEq for evmc_call_kind
Auto Trait Implementations§
impl Freeze for evmc_call_kind
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§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more