pub trait EvmData: Sized {
    fn read(reader: &mut EvmDataReader<'_>) -> EvmResult<Self>;
    fn write(writer: &mut EvmDataWriter, value: Self);
    fn has_static_size() -> bool;
}
Expand description

Data that can be converted from and to EVM data types.

Required Methods

Implementations on Foreign Types

Implementors