pub trait Backend {
    fn gas_meter<R: Rules>(self, module: &Module, rules: &R) -> GasMeter;
}
Expand description

Under the hood part of the gas metering mechanics.

Required Methods§

Provides the gas metering implementation details.

Implementors§