pub trait Implementation: Send + Sync {
    fn execute(
        &self,
        input: &[u8],
        output: &mut BytesRef<'_>
    ) -> Result<(), &'static str>; }
Expand description

Native implementation of a built-in contract.

Required methods

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

Implementors