Trait ethcore::builtin::Impl[][src]

pub trait Impl: Send + Sync {
    fn execute(&self, input: &[u8], output: &mut BytesRef) -> Result<(), Error>;
}

Native implementation of a built-in contract.

Required Methods

execute this built-in on the given input, writing to the given output.

Implementors