Enum wasmtime_runtime::TableElement [−][src]
pub enum TableElement {
FuncRef(*mut VMCallerCheckedAnyfunc),
ExternRef(Option<VMExternRef>),
}
Expand description
An element going into or coming out of a table.
Table elements are stored as pointers and are default-initialized with ptr::null_mut
.
Variants
FuncRef(*mut VMCallerCheckedAnyfunc)
A funcref
.
Tuple Fields of FuncRef
ExternRef(Option<VMExternRef>)
An exrernref
.
Tuple Fields of ExternRef
0: Option<VMExternRef>
Trait Implementations
Performs the conversion.
Performs the conversion.
Performs the conversion.
Auto Trait Implementations
Blanket Implementations
Mutably borrows from an owned value. Read more