Enum parity_wasm::interpreter::UserFunctionDescriptor
[−]
[src]
pub enum UserFunctionDescriptor { Static(&'static str, &'static [ValueType]), Heap(String, Vec<ValueType>), }
User function descriptor
Variants
Static(&'static str, &'static [ValueType])
Static function definition
Heap(String, Vec<ValueType>)
Dynamic heap function definition
Trait Implementations
impl Clone for UserFunctionDescriptor
[src]
fn clone(&self) -> UserFunctionDescriptor
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more