pub enum CallCreateOpcode {
Call,
CallCode,
DelegateCall,
StaticCall,
Create,
Create2,
}
Expand description
Call create opcodes.
Variants§
Call
CALL
CallCode
CALLCODE
DelegateCall
DELEGATECALL
StaticCall
STATICCALL
Create
CREATE
Create2
CREATE2
Auto Trait Implementations§
impl Freeze for CallCreateOpcode
impl RefUnwindSafe for CallCreateOpcode
impl Send for CallCreateOpcode
impl Sync for CallCreateOpcode
impl Unpin for CallCreateOpcode
impl UnwindSafe for CallCreateOpcode
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
Source§impl<T> TrapConsume<T> for T
impl<T> TrapConsume<T> for T
Source§type Rest = Infallible
type Rest = Infallible
Rest type.
Source§fn consume(self) -> Result<T, Infallible>
fn consume(self) -> Result<T, Infallible>
Consume
T
to get Rest
.