Type returns the underlying type of this table
(store Storelike)
| 97 | |
| 98 | // Type returns the underlying type of this table |
| 99 | func (t *Table) Type(store Storelike) *TableType { |
| 100 | ptr := C.wasmtime_table_type(store.Context(), &t.val) |
| 101 | runtime.KeepAlive(store) |
| 102 | return mkTableType(ptr, nil) |
| 103 | } |
| 104 | |
| 105 | func (t *Table) AsExtern() C.wasmtime_extern_t { |
| 106 | ret := C.wasmtime_extern_t{kind: C.WASMTIME_EXTERN_TABLE} |
nothing calls this directly
no test coverage detected