pub enum Group {
StopArithmetic,
ComparisonBitwiseLogic,
Sha3,
EnvironmentalInformation,
BlockInformation,
StackMemoryStorageFlow,
Push,
Duplication,
Exchange,
Logging,
System,
}Expand description
EVM opcode groups for better organization
Variants§
StopArithmetic
Stop and Arithmetic Operations (0x00-0x0f)
ComparisonBitwiseLogic
Comparison & Bitwise Logic Operations (0x10-0x1f)
Sha3
SHA3 (0x20)
EnvironmentalInformation
Environmental Information (0x30-0x3f)
BlockInformation
Block Information (0x40-0x4f)
StackMemoryStorageFlow
Stack, Memory, Storage and Flow Operations (0x50-0x5f)
Push
Push Operations (0x60-0x7f)
Duplication
Duplication Operations (0x80-0x8f)
Exchange
Exchange Operations (0x90-0x9f)
Logging
Logging Operations (0xa0-0xa4)
System
System operations (0xf0-0xff)
Trait Implementations§
Source§impl Ord for Group
impl Ord for Group
Source§impl PartialOrd for Group
impl PartialOrd for Group
impl Copy for Group
impl Eq for Group
impl StructuralPartialEq for Group
Auto Trait Implementations§
impl Freeze for Group
impl RefUnwindSafe for Group
impl Send for Group
impl Sync for Group
impl Unpin for Group
impl UnwindSafe for Group
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