Trait parity_wasm::interpreter::ExternalVariableValue [] [src]

pub trait ExternalVariableValue<E: UserError> {
    fn get(&self) -> RuntimeValue;
fn set(&mut self, value: RuntimeValue) -> Result<(), Error<E>>; }

Externally stored variable value.

Required Methods

Get variable value.

Set variable value.

Implementors