pub trait BytecodeRoot {
// Required methods
fn bytecode_root(&self) -> &Bytes32;
fn bytecode_root_mut(&mut self) -> &mut Bytes32;
fn bytecode_root_offset_static() -> usize;
// Provided method
fn bytecode_root_offset(&self) -> usize { ... }
}
Required Methods§
fn bytecode_root(&self) -> &Bytes32
fn bytecode_root_mut(&mut self) -> &mut Bytes32
fn bytecode_root_offset_static() -> usize
Provided Methods§
fn bytecode_root_offset(&self) -> usize
Object Safety§
This trait is not object safe.