Struct parity_wasm::interpreter::UserFunction [] [src]

pub struct UserFunction {
    pub name: String,
    pub params: Vec<ValueType>,
    pub result: Option<ValueType>,
}

User function type.

Fields

User function name.

User function parameters (for signature matching).

User function return type (for signature matching).