Enum revm_primitives::bytecode::BytecodeState
source · pub enum BytecodeState {
Raw,
Checked {
len: usize,
},
Analysed {
len: usize,
jumptable: ValidJumpAddress,
},
}
Variants§
Trait Implementations§
source§impl Clone for BytecodeState
impl Clone for BytecodeState
source§fn clone(&self) -> BytecodeState
fn clone(&self) -> BytecodeState
Returns a copy 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 BytecodeState
impl Debug for BytecodeState
source§impl PartialEq<BytecodeState> for BytecodeState
impl PartialEq<BytecodeState> for BytecodeState
source§fn eq(&self, other: &BytecodeState) -> bool
fn eq(&self, other: &BytecodeState) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.